update them

This commit is contained in:
mike
2025-12-21 19:57:37 +01:00
parent f7e8c3a956
commit ee7b1925f2
3 changed files with 11314 additions and 2 deletions

2
.gitignore vendored
View File

@@ -4,3 +4,5 @@
target/ target/
.env .env
out/puzzle/ out/puzzle/
*.log
.output.txt

View File

@@ -143,7 +143,7 @@ public class SwedishGenerator {
// Lower difficulty value means it is tried EARLIER. // Lower difficulty value means it is tried EARLIER.
// We want LONGER and SIMPLER words to be tried earlier. // We want LONGER and SIMPLER words to be tried earlier.
// Increasing simplicity weight: score (1-10) now has max impact of 50. // Increasing simplicity weight: score (1-10) now has max impact of 50.
this.difficulty = -Math.min(40, word.length() * 5) - (score * 5); this.difficulty = /*Math.min(40, (10-word.length()) * 5)*/ - (score * 5);
} }
} }

File diff suppressed because it is too large Load Diff