From b6e9c944f6cee804f4ef949b3a0346044788bd6e Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Mon, 2 Dec 2024 22:40:33 +0100 Subject: [PATCH] removed temp debug --- src/main.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4160eca..cd52b98 100644 --- a/src/main.rs +++ b/src/main.rs @@ -418,13 +418,6 @@ impl Sudoku { if let Some(limit) = solver_limit { if collapse_counter >= limit { - for cell in &self.grid[13] { - if let Some(state) = cell.get() { - println!("state: '{}'", state); - continue - } - println!("allowed : '{:?}'", cell.get_allowed()); - } break; } }