Skip to content

Commit e49db80

Browse files
committed
Fix_2
1 parent 36ea431 commit e49db80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/strings/trie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,4 @@ def _longest(node: TrieNode, current_word: str, longest_word: str) -> str:
366366
longest_word = _longest(node.get_child(child), current_word + child, longest_word)
367367
return longest_word
368368

369-
return _longest(self.root, "", "")
369+
return _longest(self.root, "", "")

0 commit comments

Comments
 (0)