We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee345dc commit e6be8ccCopy full SHA for e6be8cc
src/backtracking/sudoku.rs
@@ -13,7 +13,7 @@ impl Sudoku {
13
}
14
15
fn find_empty_cell(&self) -> Option<(usize, usize)> {
16
- // Find a empty cell in the board (returns (-1, -1) if all cells are filled)
+ // Find a empty cell in the board (returns None if all cells are filled)
17
for i in 0..9 {
18
for j in 0..9 {
19
if self.board[i][j] == 0 {
0 commit comments