Update Leetcode 题解.md

This commit is contained in:
郑永川 2018-12-28 17:26:40 +08:00 committed by GitHub
parent 5bd0f43a14
commit 03f55385ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2317,9 +2317,7 @@ public void solveSudoku(char[][] board) {
}
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
backtracking(i, j);
}
backtracking(i, 0);
}
}