Skip to content

Commit 5183875

Browse files
authored
Update 0080-remove-duplicates-from-sorted-array-ii.js
Using two pointer approch.
1 parent a963809 commit 5183875

File tree

1 file changed

+12
-23
lines changed

1 file changed

+12
-23
lines changed

javascript/0080-remove-duplicates-from-sorted-array-ii.js

+12-23
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,19 @@ var removeDuplicates = function(nums) {
3232
* @return {number}
3333
*/
3434
var removeDuplicates2 = function(nums) {
35+
const isEdgeCase = (nums.length < 2)
36+
if (isEdgeCase) return nums.length;
3537

36-
let current = nums[0];
37-
let sameElCount = 0;
38+
let [ left, right ] = [ 2, 2 ];
3839

39-
40-
for(let i = 0; i < nums.length; i++) {
41-
if(current === nums[i]) {
42-
sameElCount++;
43-
}
44-
if(current !== nums[i]) {
45-
current = nums[i];
46-
sameElCount = 1;
47-
}
48-
if(sameElCount > 2) {
49-
let left = i;
50-
let right = i+1;
51-
let count = 1;
52-
while(nums[left] === nums[right]) {
53-
count++;
54-
right++;
40+
while (right < nums.length) {/* Time O(N) */
41+
const isEqual = (nums[(left - 2)] === nums[right]);
42+
if (!isEqual) {
43+
nums[left] = nums[right];
44+
left += 1;
5545
}
56-
nums.splice(left, count);
57-
i--;
46+
47+
right += 1;
5848
}
59-
}
60-
return nums.length;
61-
};
49+
return left;
50+
};

0 commit comments

Comments
 (0)