Skip to content

Instantly share code, notes, and snippets.

@prakhar21
Created February 4, 2021 12:27
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 prakhar21/4e0d48349afbaf14db1972e6d32be520 to your computer and use it in GitHub Desktop.
Save prakhar21/4e0d48349afbaf14db1972e6d32be520 to your computer and use it in GitHub Desktop.
Trie Node in Python
class TrieNode:
def __init__(self):
self.child = {}
self.last = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment