Skip to content

Commit b938de5

Browse files
authored
Merge pull request #1597 from aadil42/patch-38
2 parents e1c63df + 337e694 commit b938de5

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* Linear
3+
* Time O(N) | Space O(1)
4+
* https://leetcode.com/problems/remove-duplicates-from-sorted-array/
5+
* @param {number[]} nums
6+
* @return {number}
7+
*/
8+
var removeDuplicates = (nums) => {
9+
let [left, right] = [0, 0];
10+
11+
while (right < nums.length) {
12+
const [leftVal, rightVal] = [nums[left], nums[right]];
13+
14+
const isEqual = (rightVal === leftVal);
15+
if (!isEqual) {
16+
left++;
17+
nums[left] = rightVal;
18+
}
19+
20+
right++;
21+
}
22+
23+
return (left + 1);
24+
};

0 commit comments

Comments
 (0)