From 95eb6bc22d72445edaee47e5dee91793d91c4c0c Mon Sep 17 00:00:00 2001 From: Michael Mutote <130656746+mr1Michael@users.noreply.github.com> Date: Wed, 18 Oct 2023 19:17:26 +0200 Subject: [PATCH] 22202956 touch up --- Breath-First Search/Sucessors.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Breath-First Search/Sucessors.py b/Breath-First Search/Sucessors.py index ed090b8..896543e 100644 --- a/Breath-First Search/Sucessors.py +++ b/Breath-First Search/Sucessors.py @@ -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 -- GitLab