From a1f4596087ce6968b777ff27565c0012eec8c5e8 Mon Sep 17 00:00:00 2001 From: quyan Date: Thu, 25 Apr 2019 15:18:09 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Leetcode=20=E9=A2=98=E8=A7=A3=20-=20?= =?UTF-8?q?=E6=90=9C=E7=B4=A2.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/notes/Leetcode 题解 - 搜索.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/Leetcode 题解 - 搜索.md b/docs/notes/Leetcode 题解 - 搜索.md index 6cd1bcde..d9c48eb7 100644 --- a/docs/notes/Leetcode 题解 - 搜索.md +++ b/docs/notes/Leetcode 题解 - 搜索.md @@ -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) {