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 4d96840 commit 7a278ddCopy full SHA for 7a278dd
README.md
@@ -111,8 +111,9 @@ print(trie.search_with_prefix('ab'))
111
112
3. Wildcard search using `?` and `*`
113
114
- a.`?` = 0 or 1 occurance of any character
115
- b.`*` = 0 or more occurance of any character
+`?` = 0 or 1 occurance of any character
+
116
+`*` = 0 or more occurance of any character
117
118
```python
119
print(trie.search('a*o*'))
README.md~
0 commit comments