Gather data

This commit is contained in:
mike
2026-01-09 10:19:14 +01:00
parent 2402ab0f68
commit e55e26af6c
2 changed files with 4 additions and 2 deletions

View File

@@ -25,8 +25,8 @@ public class ExportFormatTest {
// This creates a slot starting at (0,1)
var clueMap = new HashMap<Integer, Lemma>();
// key = (r << 8) | (c << 4) | d
int key = (0 << 8) | (0 << 4) | 2;
// key = (cellIndex << 4) | direction
int key = (0 << 4) | 2;
Lemma lemma = new Lemma("TEST", 1, "A test word");
clueMap.put(key, lemma);