Merge pull request #688 from somone23412/patch-3

Update Leetcode 题解 - 搜索.md :代码缩进
This commit is contained in:
CyC2018 2019-04-25 15:23:49 +08:00 committed by GitHub
commit a0b3cbb919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {