highlight history now contains spaces

This commit is contained in:
Matúš Púll 2024-11-02 17:16:38 +01:00
parent 3e5bdb52e0
commit 4a8890826f

View file

@ -77,6 +77,6 @@ string format_guess_history(vector<int> sequence, vector<int> guess) {
string r_string = ""; string r_string = "";
for(string s : r) for(string s : r)
r_string += s; r_string += s + " ";
return r_string; return r_string;
} }