Skip to content

Commit

Permalink
No more system.out.println
Browse files Browse the repository at this point in the history
  • Loading branch information
Replit user committed Oct 3, 2023
1 parent 6deb570 commit 8b5c7d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void solvingAPuzzleReturnsTrue() {
for (final String puzzle : puzzles()) {
final Sudoku sudoku = Sudoku.fromString(puzzle);
assertThat(sudoku.solve(new Sudoku.SudokuIndex(0, 0)), equalTo(true));
System.out.println(sudoku.toString());
//System.out.println(sudoku.toString());
}
}

Expand Down

0 comments on commit 8b5c7d6

Please sign in to comment.