SudokuMove

data class SudokuMove(val row: Int, val col: Int, val value: Int)

Data class representing a suggested move in the Sudoku puzzle.

Constructors

Link copied to clipboard
constructor(row: Int, col: Int, value: Int)

Properties

Link copied to clipboard
val col: Int

The column index where the move can be made.

Link copied to clipboard
val row: Int

The row index where the move can be made.

Link copied to clipboard
val value: Int

The single possible value that can be placed in the cell.