mirror of
https://github.com/CyC2018/CS-Notes.git
synced 2026-03-13 09:50:42 +08:00
Merge pull request #688 from somone23412/patch-3
Update Leetcode 题解 - 搜索.md :代码缩进
This commit is contained in:
@@ -1169,7 +1169,7 @@ public void solveSudoku(char[][] board) {
|
||||
colsUsed[j][num] = true;
|
||||
cubesUsed[cubeNum(i, j)][num] = true;
|
||||
}
|
||||
backtracking(0, 0);
|
||||
backtracking(0, 0);
|
||||
}
|
||||
|
||||
private boolean backtracking(int row, int col) {
|
||||
|
||||
Reference in New Issue
Block a user