We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c95797b commit 9bf70feCopy full SHA for 9bf70fe
other/number_container_system.py
@@ -14,7 +14,7 @@ def __init__(self) -> None:
14
# numbermap keys are the number and its values are lists of indexes sorted
15
# in ascending order
16
self.numbermap: dict[int, list[int]] = {}
17
- # Simply holds each index and it's number
+ # indexmap keys are an index and it's values are the number at that index
18
self.indexmap: dict[int, int] = {}
19
20
def binary_search_delete(self, array: list[int], item: int) -> list[int]:
0 commit comments