Skip to content

Instantly share code, notes, and snippets.

@CodHeK
Created June 11, 2020 08:12
Show Gist options
  • Save CodHeK/132ee2bd9068bcf034e6c9298f86d162 to your computer and use it in GitHub Desktop.
Save CodHeK/132ee2bd9068bcf034e6c9298f86d162 to your computer and use it in GitHub Desktop.
class Trie {
constructor() {
this.trie = null;
this.suggestions = [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment