Skip to content

Instantly share code, notes, and snippets.

@CodHeK
Last active June 11, 2020 08:21
Show Gist options
  • Save CodHeK/54da6a41897058b85bcfeef586c3ce75 to your computer and use it in GitHub Desktop.
Save CodHeK/54da6a41897058b85bcfeef586c3ce75 to your computer and use it in GitHub Desktop.
this.trie = {
isLeaf: false,
children: {
'a': {
isLeaf: false,
children: {
'n': {
isLeaf: false,
children: {
't': {
isLeaf: true,
children: {}
},
'd': {
isLeaf: true,
children: {}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment