???leetcode ????????? ??????????????? ?????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了???leetcode ????????? ??????????????? ?????????相关的知识,希望对你有一定的参考价值。
??????????????? class ?????? void test int elf turn ??????
?????????????????? nums
?????????????????????????????? 0
?????????????????????????????????????????????????????????????????????
??????:
??????:[0,1,0,3,12]
??????:[1,3,12,0,0]
??????:
- ????????????????????????????????????????????????????????????
- ???????????????????????????
class Solution: def moveZeroes(self, nums): """ :type nums: List[int] :rtype: void Do not return anything, modify nums in-place instead. """ i = 0 for test in nums: if test != 0: nums[i] = test i+=1 for i in range(i,len(nums)): nums[i]=0
以上是关于???leetcode ????????? ??????????????? ?????????的主要内容,如果未能解决你的问题,请参考以下文章