mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-19 00:37:02 +00:00
noqa: F821 This syntax is Python 3 only
This commit is contained in:
parent
cc5102ab01
commit
3f6760ee15
|
@ -12,7 +12,7 @@ class TrieNode:
|
||||||
self.nodes = dict() # Mapping from char to TrieNode
|
self.nodes = dict() # Mapping from char to TrieNode
|
||||||
self.is_leaf = False
|
self.is_leaf = False
|
||||||
|
|
||||||
def insert_many(self, words: [str]):
|
def insert_many(self, words: [str]): # noqa: F821 This syntax is Python 3 only
|
||||||
"""
|
"""
|
||||||
Inserts a list of words into the Trie
|
Inserts a list of words into the Trie
|
||||||
:param words: list of string words
|
:param words: list of string words
|
||||||
|
@ -34,7 +34,7 @@ class TrieNode:
|
||||||
curr = curr.nodes[char]
|
curr = curr.nodes[char]
|
||||||
curr.is_leaf = True
|
curr.is_leaf = True
|
||||||
|
|
||||||
def find(self, word: str) -> bool:
|
def find(self, word: str) -> bool: # noqa: F821 This syntax is Python 3 only
|
||||||
"""
|
"""
|
||||||
Tries to find word in a Trie
|
Tries to find word in a Trie
|
||||||
:param word: word to look for
|
:param word: word to look for
|
||||||
|
@ -48,7 +48,7 @@ class TrieNode:
|
||||||
return curr.is_leaf
|
return curr.is_leaf
|
||||||
|
|
||||||
|
|
||||||
def print_words(node: TrieNode, word: str):
|
def print_words(node: TrieNode, word: str): # noqa: F821 This syntax is Python 3 only
|
||||||
"""
|
"""
|
||||||
Prints all the words in a Trie
|
Prints all the words in a Trie
|
||||||
:param node: root node of Trie
|
:param node: root node of Trie
|
||||||
|
|
Loading…
Reference in New Issue
Block a user