We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6086afa commit 0ffeb21Copy full SHA for 0ffeb21
Trie/ReadMe.md
@@ -36,7 +36,7 @@ func contains(word: String) -> Bool {
36
37
// 3
38
while currentIndex < characters.count,
39
- let child = currentNode.children[character[currentIndex]] {
+ let child = currentNode.children[characters[currentIndex]] {
40
41
currentNode = child
42
currentIndex += 1
0 commit comments