This commit is contained in:
Jacob Signorovitch
2025-04-18 07:55:33 -04:00
parent d6cd6812c4
commit 505fa48c36
2 changed files with 32 additions and 2 deletions

View File

@@ -183,7 +183,6 @@ class Grid {
// Combine numbers that are the same into their sum. Start checking for
// combinations from the side the direction is to for each row/column.
void combine(int d) {
// Assume left.
if (d == 0) {
for (int y = 0; y < this.h; y++) {
int prv = this.get(0, y);