未验证 提交 a1f45960 编写于 作者: Q quyan 提交者: GitHub

Update Leetcode 题解 - 搜索.md

上级 22256bf1
...@@ -1169,7 +1169,7 @@ public void solveSudoku(char[][] board) { ...@@ -1169,7 +1169,7 @@ public void solveSudoku(char[][] board) {
colsUsed[j][num] = true; colsUsed[j][num] = true;
cubesUsed[cubeNum(i, j)][num] = true; cubesUsed[cubeNum(i, j)][num] = true;
} }
backtracking(0, 0); backtracking(0, 0);
} }
private boolean backtracking(int row, int col) { private boolean backtracking(int row, int col) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册