Skip to content

Instantly share code, notes, and snippets.

@basekays
Created June 21, 2018 03:00
Show Gist options
  • Select an option

  • Save basekays/bed3b6d1f8aae9f0565ee39b070515a0 to your computer and use it in GitHub Desktop.

Select an option

Save basekays/bed3b6d1f8aae9f0565ee39b070515a0 to your computer and use it in GitHub Desktop.
/**
* @param {number[]} nums
* @return {void} Do not return anything, modify nums in-place instead.
*/
var moveZeroes = function(nums) {
for (var i = nums.length; i >= 0; i--) {
if (nums[i] == 0) {
nums.splice(i, 1);
nums.push(0);
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment