Skip to content

Commit 6354be8

Browse files
committed
update
1 parent beaf157 commit 6354be8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

algorithms/move-zeroes.js

+13
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,17 @@ var moveZeroes = function (nums) {
1414
for (let i = index; i < nums.length; i++) {
1515
nums[i] = 0;
1616
}
17+
18+
// 双指针
19+
20+
// let slow = 0;
21+
// let fast = 0;
22+
23+
// while (fast < nums.length) {
24+
// if (nums[fast] !== 0) {
25+
// swap(nums, slow, fast);
26+
// slow++;
27+
// }
28+
// fast++;
29+
// }
1730
};

0 commit comments

Comments
 (0)