Skip to content

Commit c95797b

Browse files
CaedenPHcclauss
andauthored
Update other/number_container_system.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 82e1a0b commit c95797b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: other/number_container_system.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
class NumberContainer:
1313
def __init__(self) -> None:
14-
# Holds number as the key and returns list of indexes where the number is
15-
# The list of indexes is a sorted array in ascending order
14+
# numbermap keys are the number and its values are lists of indexes sorted
15+
# in ascending order
1616
self.numbermap: dict[int, list[int]] = {}
1717
# Simply holds each index and it's number
1818
self.indexmap: dict[int, int] = {}

0 commit comments

Comments
 (0)