Skip to content

Commit

Permalink
Merge pull request #14 from jorendorff/jorendorff/allow-long-words
Browse files Browse the repository at this point in the history
Let the player use long words in solutions
  • Loading branch information
skedwards88 committed Oct 21, 2023
2 parents bd8d027 + 711f3b5 commit 064bcd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/logic/trie.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
commonWordsLen5,
commonWordsLen6,
commonWordsLen7,
commonWordsLen8plus,
} from "@skedwards88/word_lists";

export const trie = getTrie(
Expand All @@ -14,6 +15,7 @@ export const trie = getTrie(
...commonWordsLen5,
...commonWordsLen6,
...commonWordsLen7,
...commonWordsLen8plus,
],
[]
);

0 comments on commit 064bcd8

Please sign in to comment.