Skip to content

Commit fffbcc8

Browse files
authored
Merge pull request OmkarPathak#75 from MrDupin/patch-1
Author of Trie
2 parents 8e7a69c + 30b7115 commit fffbcc8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pygorithm/data_structures/trie.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
'''
2-
Node class to create a node
3-
for trie
4-
'''
1+
"""
2+
Author: MrDupin
3+
"""
54

65
class Node:
76
def __init__(self, v, p=None, w=False):

0 commit comments

Comments
 (0)