赞
踩
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
输入: [0,1,0,3,12]
输出: [1,3,12,0,0]
必须在原数组上操作,不能拷贝额外的数组。
尽量减少操作次数。
class Solution:
def moveZeroes(self, nums) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
i = 0
while True:
try:
nums.remove(0)
except:
break
else:
i +=1
for j in range(i):
nums.append(0)
return nums
21 个测试用例
执行用时: 112 ms
内存消耗: 14 MB
解题思路及代码来源:博主
题目来源:力扣(LeetCode)
题目链接:https://leetcode-cn.com/problems/move-zeroes
题目著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。