Skip to content

Instantly share code, notes, and snippets.

View Dhana-Krishnasamy's full-sized avatar
🎯
Focusing

Dhana Dhana-Krishnasamy

🎯
Focusing
View GitHub Profile
@Dhana-Krishnasamy
Dhana-Krishnasamy / Trie.js
Created November 11, 2019 22:14 — forked from tpae/Trie.js
Trie.js - super simple JavaScript implementation
// Trie.js - super simple JS implementation
// https://en.wikipedia.org/wiki/Trie
// -----------------------------------------
// we start with the TrieNode
function TrieNode(key) {
// the "key" value will be the character in sequence
this.key = key;