Compare commits
19 commits
763ee444d4
...
189cdcf05a
Author | SHA1 | Date | |
---|---|---|---|
|
189cdcf05a | ||
|
de48eb9e94 | ||
|
27152689ea | ||
|
8e304ec8a9 | ||
|
d1a67510ef | ||
|
2c31c1aff2 | ||
|
a0e20dd341 | ||
|
e05ed1cc4a | ||
|
798116716f | ||
|
1d37e00b3a | ||
|
72057a3224 | ||
|
3992996a89 | ||
|
0084c8717a | ||
|
f4a64b2a37 | ||
|
4d69be0633 | ||
|
091e8527e3 | ||
|
a4976aeefb | ||
|
239d5c3dbd | ||
|
55982909d2 |
|
@ -79,7 +79,7 @@ def get(self, key: str) -> T | None:
|
|||
return self._children[key[0]].get(key[1:])
|
||||
```
|
||||
|
||||
### Addition
|
||||
### Insertion
|
||||
|
||||
Adding a new value to the _Trie_ is similar to a key lookup, only this time we
|
||||
store the new value instead of returning it.
|
||||
|
|
Loading…
Reference in a new issue