Skip to content

Commit 50caae0

Browse files
committed
improve implement-trie-prefix-tree solution
1 parent 8facb2e commit 50caae0

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

implement-trie-prefix-tree/parkhojeong.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
class Node:
22
def __init__(self, s: str):
3-
self.s: str = s
43
self.isLast: bool = False
54
self.childs: dict[str, Node] = {}
65

0 commit comments

Comments
 (0)