Update Leetcode 题解 - 搜索.md

This commit is contained in:
quyan 2019-04-25 15:18:09 +08:00 committed by GitHub
parent 22256bf17c
commit a1f4596087
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) {