-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmove_zeroes.java
More file actions
39 lines (29 loc) · 800 Bytes
/
Copy pathmove_zeroes.java
File metadata and controls
39 lines (29 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Simple solution
class Solution {
// Shift non-zero values as far forward as possible
// Fill remaining space with zeros
public void moveZeroes(int[] nums) {
if (nums == null || nums.length == 0) return;
int insertPos = 0;
for (int num: nums) {
if (num != 0) nums[insertPos++] = num;
}
while (insertPos < nums.length) {
nums[insertPos++] = 0;
}
}
}
// Another solution
class Solution {
public void moveZeroes(int[] nums) {
int count=0;
for (int i = 0; i < nums.length; i++) {
if(nums[i]==0)
count++;
if(count!=0&&nums[i]!=0){
nums[i-count]=nums[i];
nums[i]=0;
}
}
}
}