SudokuCellState
data class SudokuCellState(val value: Int, val solution: Int, val isLocked: Boolean, var isError: Boolean = false)
Represents the state of a single Sudoku cell.
See also
for functions that process Sudoku grids.
for functions that process Sudoku grids.
for different methods of checking mistakes in Sudoku.
for dimensions and rules applied to Sudoku grids.
SudokuSolver
for methods that solve Sudoku puzzles.