Skip to content

Commit 4279985

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9daa2bb commit 4279985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backtracking/sodukuSolver

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ class Solution(object):
6262
rows[row] |= bit
6363
cols[col] |= bit
6464
boxes[(row // 3) * 3 + (col // 3)] |= bit
65-
65+
6666
if solve():
6767
return True
68-
68+
6969
board[row][col] = '.'
7070
rows[row] &= ~bit
7171
cols[col] &= ~bit

0 commit comments

Comments
 (0)