1 Commits

Author SHA1 Message Date
s3rius a34d63aebe Fixed finding words.
/ docker_build (push) Successful in 1m31s
/ helm_deploy (push) Successful in 26s
Testing zangramru / lint (push) Successful in 32s
Testing zangramru / pytest (push) Failing after 22s
Signed-off-by: Pavel Kirilin <s3riussan@gmail.com>
2026-07-02 03:42:44 +02:00
+1
View File
@@ -239,6 +239,7 @@ class PuzzleGenerator:
prev = path[0]
for tile in path[1:]:
neigbours[prev].add(tile)
neigbours[tile].add(prev)
prev = tile
extras = {w: p for w, p in solutions.items() if w not in cover}