美文网首页
LeetCode--移除元素(python版)

LeetCode--移除元素(python版)

作者: 猫爱吃草莓 | 来源:发表于2018-12-23 16:55 被阅读0次
    class Solution(object):
       def removeElement(self, nums, val):
           """
           :type nums: List[int]
           :type val: int
           :rtype: int
           """
           i=0
           for j in range(len(nums)):
               if nums[j]!=val:
                   nums[i]=nums[j]
                   i=i+1
           return i
    

    相关文章

      网友评论

          本文标题:LeetCode--移除元素(python版)

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