Gather data

This commit is contained in:
mike
2026-01-08 22:54:14 +01:00
parent df73dbf844
commit 5b470239f5
7 changed files with 6 additions and 740 deletions

View File

@@ -54,7 +54,7 @@ public record ExportFormat() {
puz.swe().forEachSlot(g, (int key, long rs, long cs, int len) -> {
var word = clueMap.get(key);
if (word != null) {
var p = extractPlacedFromSlot(new Slot(key, rs, cs, len), word);
var p = extractPlacedFromSlot(Slot.from(key, rs, cs, len), word);
if (p != null) placed.add(p);
}
});