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; } }