Skip to content

Instantly share code, notes, and snippets.

@olslash
Last active August 29, 2015 14:05
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 olslash/96b7fa4440072c925100 to your computer and use it in GitHub Desktop.
Save olslash/96b7fa4440072c925100 to your computer and use it in GitHub Desktop.
T9 blogpost - 2
var Trie = function() {
this.children = {}; // Like {'2': <ref to Trie instance>, '3': ...}
this.words = []; // Like [['award', 10764], ['aware', 6625]]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment