Simplification
This commit is contained in:
parent
3cd8d33800
commit
bcc10f94a8
1 changed files with 3 additions and 6 deletions
9
main.cpp
9
main.cpp
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue