Gather data

This commit is contained in:
mike
2026-01-09 05:51:23 +01:00
parent abef2e2f0b
commit 850fdb4f67
4 changed files with 60 additions and 137 deletions

View File

@@ -83,12 +83,6 @@ public class MainTest {
@Test
public void testGridBasics() {
var grid = makeEmptyGrid();
// Initialize with #
for (int r = 0; r < 3; r++) {
for (int c = 0; c < 4; c++) {
grid.clear(r, c);
}
}
// Test set/get
grid.setCharAt(0, 0, 'A');