提交 cbdb8c91 编写于 作者: 檀越@新空间's avatar 檀越@新空间 🐭

fix:移除元素

上级 27176fdf
......@@ -2,3 +2,7 @@
engine was transferred to model_kwargs.
Please confirm that engine is what you intended.
2023-06-21 21:24:02 - Your app is available at http://localhost:8000
2023-06-21 22:32:31 - WARNING! engine is not default parameter.
engine was transferred to model_kwargs.
Please confirm that engine is what you intended.
2023-06-21 22:32:31 - Your app is available at http://localhost:8000
"""
移除元素
"""
from typing import List
class Solution:
def removeElement(self, nums: List[int], val: int) -> int:
left = 0
for index in range(0, len(nums)):
if nums[index] != val:
nums[left] = nums[index]
left += 1
return left
if __name__ == '__main__':
result = Solution().removeElement([2], 3)
print(result)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册