This commit is contained in:
Sandipsinh Rathod 2024-10-10 12:13:56 -04:00
parent caf1b6d08e
commit 787b320130

@ -149,7 +149,8 @@ void printScores(int *points) {
for (int i = 0; i < 26; i++) {
if (arr[i].second != -1) {
pt arr[i].first << ": " << arr[i].second << " boxes" << (i == 25 || prev == arr[i].second ? " (win) \n" : nl);
pt arr[i].first << ": " << arr[i].second << " boxes" << (
i == 25 || prev == arr[i].second ? " (win) \n" : nl);
prev = arr[i].second;
}
}