We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7427a23 commit 99ffcb7Copy full SHA for 99ffcb7
data_structures/arrays/dynamic_array.py
@@ -78,7 +78,7 @@ def get(self, index: int) -> int:
78
if index < 0 or index >= self.size:
79
raise IndexError("index out of range")
80
return self.array[index]
81
-
+
82
def __setitem__(self, index: int, value: int) -> None:
83
84
0 commit comments