From 4a8890826f02714c46963a66e72e196ff5b876bd Mon Sep 17 00:00:00 2001 From: Matuush Date: Sat, 2 Nov 2024 17:16:38 +0100 Subject: [PATCH] highlight history now contains spaces --- validate.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate.hpp b/validate.hpp index 7602475..8555f0e 100644 --- a/validate.hpp +++ b/validate.hpp @@ -77,6 +77,6 @@ string format_guess_history(vector sequence, vector guess) { string r_string = ""; for(string s : r) - r_string += s; + r_string += s + " "; return r_string; }