Skip to content

Commit ded2837

Browse files
committed
Merge branch 'turing-code' of https://github.com/covid-in/TheAlgorithms-Python into turing-code
2 parents 3e4a386 + 7b3b391 commit ded2837

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

data_structures/trie/radix_tree.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
with its parent [https://en.wikipedia.org/wiki/Radix_tree]
77
"""
88

9-
109
class RadixNode:
1110
def __init__(self, prefix: str = "", is_leaf: bool = False) -> None:
1211
# Mapping from the first character of the prefix of the node

0 commit comments

Comments
 (0)