Cell(int initialValue) |
Initialise a non-empty cell for a standard sudoku board of size 3*3*3*3.
|
Cell(int initialValue,
int boardSize) |
Initialise a non-empty cell for a sudoku board of arbitrary size.
|
Cell(int initialValue,
int boardSize,
CellCollection row,
CellCollection column,
CellCollection box) |
Initialise a non-empty cell for a sudoku board of arbitrary size.
|
SudokuGrid() |
Initialise an empty sudoku grid for a standard Sudoku board.
|
SudokuGrid(int boardSize) |
Initialise an empty sudoku grid for a custom sized Sudoku board.
|
SudokuGrid(SudokuGrid initialGrid,
boolean exactReplica) |
Initialise a grid from one already established.
|