Skip to content

Instantly share code, notes, and snippets.

@dance2die
Last active March 30, 2019 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/3107d7b0a3d3eeeb0dcad5886f5b1bf9 to your computer and use it in GitHub Desktop.
Save dance2die/3107d7b0a3d3eeeb0dcad5886f5b1bf9 to your computer and use it in GitHub Desktop.
class Trie {
has(word) { return true; }
}
function useTrie() {
const trie = React.useState(new Trie())[0];
return { ...trie };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment