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

27. Remove Element

时间:2017-03-13 10:16:44      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:length   hang   back   sel   lis   att   rem   ext   nbsp   

Given an array and a value, remove all instances of that value in place and return the new length.

Do not allocate extra space for another array, you must do this in place with constant memory.

The order of elements can be changed. It doesn‘t matter what you leave beyond the new length.

 

 1 class Solution(object):
 2     def removeElement(self, nums, val):
 3         """
 4         :type nums: List[int]
 5         :type val: int
 6         :rtype: int
 7         """
 8         start, end = 0, len(nums) - 1
 9         while start <= end:
10             if nums[start] == val:
11                 nums[start], nums[end], end = nums[end], nums[start], end - 1
12             else:
13                 start +=1
14         return start

将不用的放到最后

 1 class Solution(object):
 2     def removeElement(self, nums, val):
 3         """
 4         :type nums: List[int]
 5         :type val: int
 6         :rtype: int
 7         """
 8         for i in nums[:]:
 9             if i == val:
10                 nums.remove(val)
11         return len(nums)

nums 和 nums[:] 的区别??

27. Remove Element

标签:length   hang   back   sel   lis   att   rem   ext   nbsp   

原文地址:http://www.cnblogs.com/fullest-life/p/6541322.html

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