- search(SearchNode) - Method in class DepthFirstSearcher
-
search
- given an initial node, perform
depth-first search (DFS).
- SIZE - Static variable in class SudokuNode
-
number of square grid rows and columns
- SudokuNode - Class in <Unnamed>
-
- SudokuNode(Scanner) - Constructor for class SudokuNode
-
Constructs a SudokuNode using the given Scanner to read a text Sudoku grid with periods marking unknown values.
- SudokuNode(int[][]) - Constructor for class SudokuNode
-
Constructs a SudokuNode using the given 9-by-9 grid of cell values, either ranging from 1 to 9 or being the UNKNOWN
value.