Position

data class Position(val row: Int, val col: Int)

Represents the position of a cell within the Sudoku grid.

Constructors

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

Properties

Link copied to clipboard
val col: Int

The column index of the cell.

Link copied to clipboard
val row: Int

The row index of the cell.