Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created March 30, 2019 21:10
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/0e123ece5776d334bf5e7fe39d88410b to your computer and use it in GitHub Desktop.
Save dance2die/0e123ece5776d334bf5e7fe39d88410b to your computer and use it in GitHub Desktop.
class Trie {
constructor() {
this.has = this.has.bind(this);
}
has(word) { return true; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment