数组支持任意位置插入修改
This commit is contained in:
parent
9c788bde54
commit
05fb59166b
@ -73,8 +73,7 @@ class MyArray:
|
||||
# 插入位置大于当前的元素个数,可以插入最后的位置
|
||||
if index >= self._count:
|
||||
self._data.append(value)
|
||||
else:
|
||||
if index < 0:
|
||||
elif index < 0:
|
||||
# 位置小于 0 可以插入第 0 个位置
|
||||
self._data.insert(0, value)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user