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; if(col < 0 || col >= M) return 1;
// Human info // Human info
if(human_player) { if(human_player)
cout << '\n'; cout << "\nGuesses are " << N << " space-separated numbers from 0 to " << M-1 << '\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\n";
<< "Responses are in format [correct out of place] / [correct in place]" << '\n';
cout << '\n';
}
// Init solver // Init solver
Solver bot(N, M); Solver bot(N, M);