Skip to content

Commit d14bad7

Browse files
committed
Merge branch 'python-tests' of github.com:IsxImattI/Python into python-tests
2 parents f176dd0 + ff1e773 commit d14bad7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/arrays/sudoku_solver.py

Lines changed: 1 addition & 0 deletions
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)