g0201_0300.s0283_move_zeroes.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0283_move_zeroes;
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Two_Pointers
public class Solution {
public void moveZeroes(int[] nums) {
int firstZero = 0;
for (int i = 0; i < nums.length; i++) {
if (nums[i] != 0) {
swap(firstZero, i, nums);
firstZero++;
}
}
}
private void swap(int index1, int index2, int[] numbers) {
int val2 = numbers[index2];
numbers[index2] = numbers[index1];
numbers[index1] = val2;
}
}