码迷,mamicode.com
首页 > 其他好文 > 详细

27. Remove Element

时间:2017-12-17 16:49:59      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:gpo   elf   lag   highlight   pytho   object   pos   rem   pre   

class Solution(object):
    def removeElement(self, nums, val):
        """
        :type nums: List[int]
        :type val: int
        :rtype: int
        """
        if not nums:
            return 0
        flag=0
        for i in range(len(nums)):
            if nums[i]!=val:
                nums[flag]=nums[i]
                flag+=1
        return flag

  

27. Remove Element

标签:gpo   elf   lag   highlight   pytho   object   pos   rem   pre   

原文地址:http://www.cnblogs.com/xlqtlhx/p/8052208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!