Skip to content
Snippets Groups Projects
Commit 95eb6bc2 authored by Michael Mutote's avatar Michael Mutote
Browse files

22202956

touch up
parent 73e116b2
No related branches found
No related tags found
No related merge requests found
......@@ -18,8 +18,6 @@ def sudoku_successor(state):
new_state = list(map(list, state)) # Convert state to a list of lists
new_state[y][x] = j
if sudoku_allowed((y, x, new_state)):
# print(j)
# print(state)
next_states.append(tuple(map(tuple, new_state)))
return next_states
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment