From bcc10f94a849e17fdf8741feedb11186dedd22d2 Mon Sep 17 00:00:00 2001 From: Matuush Date: Thu, 12 Dec 2024 08:22:06 +0100 Subject: [PATCH] Simplification --- main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index fbb3104..13c814e 100644 --- a/main.cpp +++ b/main.cpp @@ -41,12 +41,9 @@ int main(int argc, char* argv[]) { if(col < 0 || col >= M) return 1; // Human info - if(human_player) { - cout << '\n'; - cout << "Guesses are " << N << " space-separated numbers from 0 to " << M-1 << '\n' - << "Responses are in format [correct out of place] / [correct in place]" << '\n'; - cout << '\n'; - } + if(human_player) + cout << "\nGuesses are " << N << " space-separated numbers from 0 to " << M-1 << '\n' + << "Responses are in format [correct out of place] / [correct in place]" << "\n\n"; // Init solver Solver bot(N, M);