mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
32 lines
731 B
C#
32 lines
731 B
C#
|
public class Solution {
|
||
|
public void MoveZeroes(int[] nums) {
|
||
|
var i = 0;
|
||
|
// find first zero
|
||
|
while (i < nums.Length && nums[i] != 0) {
|
||
|
++i;
|
||
|
}
|
||
|
|
||
|
for (var j = i + 1; j < nums.Length; ++j) {
|
||
|
// we do nothing for zeroes
|
||
|
if (nums[j] == 0) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
// find first zero
|
||
|
while (i < nums.Length && nums[i] != 0) {
|
||
|
++i;
|
||
|
}
|
||
|
|
||
|
// no zero has been found
|
||
|
if (i >= nums.Length) {
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
// swap them while maintaining the order
|
||
|
nums[i] = nums[j];
|
||
|
nums[j] = 0;
|
||
|
++i;
|
||
|
}
|
||
|
}
|
||
|
}
|