typo fix
This commit is contained in:
parent
8ab20c7022
commit
1d25ddc3bf
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ vector<int> validate(vector<int> sequence, vector<int> guess) {
|
|||
}
|
||||
|
||||
string format_response(vector<int> response) {
|
||||
return to_string(response[0]) + " somewhere / " + to_string(response[1]) + "on the right spot\n";
|
||||
return to_string(response[0]) + " somewhere / " + to_string(response[1]) + " on the right spot\n";
|
||||
}
|
||||
string format_guess(vector<int> guess) {
|
||||
string r = "";
|
||||
|
|
Loading…
Reference in a new issue