Difficult:Easy
題目
Given an integer array nums, move all 0’s to the end of it while maintaining the relative order of the non-zero elements.
Note that you must do this in-place without making a copy of the array.
翻譯
給定一個整數數組 nums,將所有 0 移動到它的末尾,同時保持非零元素的相對順序。
請注意,您必須在不復制數組的情況下就地執行此操作。
範例
Example 1:
1 | Input: nums = [0,1,0,3,12] |
Example 2:
1 | Input: nums = [0] |
解題思路
1.將非0和0的數互相交換
程式碼
1 | var moveZeroes = function(nums) { |