题目:
题目
这道题比较简单,不多做解释,参考代码如下, beats 99%:
class Solution:
def removeElement(self, nums, val):
"""
:type nums: List[int]
:type val: int
:rtype: int
"""
if not len(nums):
return 0
i = 0
while i < len(nums):
if nums[i] == val:
nums.remove(nums[i])
else:
i = i + 1
return len(nums)
其它题目:leetcode题目答案讲解汇总(Python版 持续更新)
ps:如果您有好的建议,欢迎交流 :-D,
也欢迎访问我的个人博客 苔原带 (www.tundrazone.com)
网友评论