Simplification

This commit is contained in:
Matúš Púll 2024-12-12 08:22:06 +01:00
parent 3cd8d33800
commit bcc10f94a8

View file

@ -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);