Skip to content

Commit 04b66fb

Browse files
Remove print
1 parent f5cdcfe commit 04b66fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sudoku-solver/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ main(int argc, char* argv[])
259259
solve_dfs(state, solutions, max_solutions);
260260

261261
if (solutions.empty()) {
262-
std::cout << "No solutions found.\\n";
262+
// std::cout << "No solutions found.\\n";
263263
return 0;
264264
}
265265

266-
std::cout << "Found " << solutions.size() << " solution(s).\\n";
266+
// std::cout << "Found " << solutions.size() << " solution(s).\\n";
267267
for (const auto& solution : solutions) {
268268
std::cout << solution << "\\n";
269269
}

0 commit comments

Comments
 (0)