Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
data class SudokuGameState(val grid: List<List<Cell>>, val selectedCell: Cell.Position?, val mistakes: List<Cell.Position>, val isSolved: Boolean)
Represents the current state of the Sudoku game.
Link copied to clipboard
ViewModel responsible for managing the state of the Sudoku game.
Functions
Link copied to clipboard
Main entry point of the Sudoku game UI.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Represents an individual cell in the Sudoku grid.