fix: Add spaces between numbers

This commit is contained in:
David Leal 2020-08-10 12:37:06 -05:00
parent f4c187b9ae
commit de5f695afa
No known key found for this signature in database
GPG Key ID: 3C482B03FD220E68

View File

@ -33,7 +33,7 @@ void printSolution(const std::array<std::array<int, n>, n> &board) {
std::cout << "\n"; std::cout << "\n";
for (int i = 0; i < n; i++) { for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) { for (int j = 0; j < n; j++) {
std::cout << "" << board[i][j]; std::cout << "" << board[i][j] << " ";
} }
std::cout << "\n"; std::cout << "\n";
} }