Gather data

This commit is contained in:
mike
2026-01-10 00:55:32 +01:00
parent 4f42c613a0
commit a444f943b9
4 changed files with 19 additions and 57 deletions

View File

@@ -271,7 +271,7 @@ public record SwedishGenerator(Rng rng) {
}
}
static record Lemma(int index, byte[] word, int simpel, String[] clue) {
public static record Lemma(int index, byte[] word, int simpel, String[] clue) {
static int LEMMA_COUNTER = 0;
public Lemma(int index, String word, int simpel, String[] clu) { this(index, word.getBytes(StandardCharsets.US_ASCII), simpel, clu); }