Merge pull request #575 from itwzh/patch-1

Update Leetcode 题解.md
This commit is contained in:
CyC2018 2019-02-22 17:55:09 +08:00 committed by GitHub
commit a430514e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2316,7 +2316,7 @@ public void solveSudoku(char[][] board) {
colsUsed[j][num] = true;
cubesUsed[cubeNum(i, j)][num] = true;
}
backtracking(i, 0);
backtracking(0, 0);
}
private boolean backtracking(int row, int col) {