Skip to content

Commit

Permalink
Remove a debugging print
Browse files Browse the repository at this point in the history
  • Loading branch information
the-rectifier committed Nov 27, 2021
1 parent 2102292 commit 8fdf315
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl SudokuAvr {

board.filled = SudokuAvr::count_filled(&board.board);

println!("Filled Before: {}", SudokuAvr::count_filled(&board.board));
// println!("Filled Before: {}", SudokuAvr::count_filled(&board.board));
info!("Solving Board");
SudokuAvr::solve_board(&mut board);

Expand All @@ -88,7 +88,7 @@ impl SudokuAvr {
Difficulty::Ultra => SudokuAvr::remove_cells(&mut board, ULTRA),
};

println!("Filled After: {}", SudokuAvr::count_filled(&board.board));
// println!("Filled After: {}", SudokuAvr::count_filled(&board.board));
return board;
}

Expand Down

0 comments on commit 8fdf315

Please sign in to comment.