Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View dargue3's full-sized avatar

Dan Argue dargue3

  • Apple
  • Sunnyvale, CA
View GitHub Profile
class Node {
constructor(character) {
this.edges = {};
this.data = undefined; // where we will store the flag data / capitalized names
this.character = character;
this.endOfWord = false;
}
}
export default class Trie extends Node {