We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91cea47 + 82f349b commit 7f8c1efCopy full SHA for 7f8c1ef
1 file changed
arrays/array.py
@@ -11,7 +11,7 @@ def array_test():
11
print(ar)
12
print("Index of 4: ", ar.index(4)) # index of given value
13
14
- ar.remove(4) # remove item with given value
+ ar.remove(4) # remove the first occurence of item with given value
15
print("Removed 4: ", ar)
16
17
ar.reverse()
0 commit comments