Skip to content

Commit a430514

Browse files
authored
Merge pull request CyC2018#575 from itwzh/patch-1
Update Leetcode 题解.md
2 parents e364548 + 95d516c commit a430514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/notes/Leetcode 题解.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2316,7 +2316,7 @@ public void solveSudoku(char[][] board) {
23162316
colsUsed[j][num] = true;
23172317
cubesUsed[cubeNum(i, j)][num] = true;
23182318
}
2319-
backtracking(i, 0);
2319+
backtracking(0, 0);
23202320
}
23212321

23222322
private boolean backtracking(int row, int col) {

0 commit comments

Comments
 (0)