Skip to content

Commit

Permalink
Let the player use long words in solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorendorff committed Oct 20, 2023
1 parent f9b5899 commit 711f3b5
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 711f3b5

Please sign in to comment.