美文网首页
27.leetcode题目讲解(Python):移除元素

27.leetcode题目讲解(Python):移除元素

作者: 夏山闻汐 | 来源:发表于2018-10-19 11:02 被阅读39次

题目:


题目

这道题比较简单,不多做解释,参考代码如下, 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)

相关文章

网友评论

      本文标题:27.leetcode题目讲解(Python):移除元素

      本文链接:https://www.haomeiwen.com/subject/lylyzftx.html