Skip to content

Commit ff1e773

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/arrays/sudoku_solver.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def cross(items_a, items_b):
2525
units = {s: [u for u in unitlist if s in u] for s in squares}
2626
peers = {s: {x for u in units[s] for x in u} - {s} for s in squares}
2727

28+
2829
def test():
2930
"A set of unit tests."
3031
assert len(squares) == 81

0 commit comments

Comments
 (0)