Đề bài:
Bài giải:
Python code
class Solution(object):
def moveZeroes(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
i = 0
for j in xrange(len(nums)):
if nums[j] != 0:
nums[i], nums[j] = nums[j], nums[i]
i += 1
Nhờ các bạn update code ngôn ngữ khác cho bài này nhé.