pub struct SudokuSolver {
pub grid: [u8; 81],
}Expand description
Simple Sudoku solver using backtracking (9×9).
Fields§
§grid: [u8; 81]81-element grid, 0 = empty
Implementations§
Auto Trait Implementations§
impl Freeze for SudokuSolver
impl RefUnwindSafe for SudokuSolver
impl Send for SudokuSolver
impl Sync for SudokuSolver
impl Unpin for SudokuSolver
impl UnsafeUnpin for SudokuSolver
impl UnwindSafe for SudokuSolver
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more