Givens

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

Represents a fixed cell 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 of the given cell (0-based).

Link copied to clipboard
val row: Int

The row index of the given cell (0-based).

Link copied to clipboard
val value: Int

The fixed value assigned to the cell.