Skip to content

Commit 855a5eb

Browse files
authored
Added solution for 26
1 parent 864aa18 commit 855a5eb

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
Runtime: 4 ms, faster than 26.72% of Rust online submissions for Remove Duplicates from Sorted Array.
3+
Memory Usage: 2.8 MB, less than 100.00% of Rust online submissions for Remove Duplicates from Sorted Array.
4+
*/
5+
6+
impl Solution {
7+
// Maintain 2 markers: i and j that start the vector from position 0 and 1 resp. Then every time j's number is higher than i, move both pointers by 1, else only move j's pointer
8+
pub fn remove_duplicates(nums: &mut Vec<i32>) -> i32 {
9+
let size = nums.len();
10+
let mut i = 0;
11+
let mut j = 1;
12+
13+
// If vector is blank, return 0
14+
if (size == 0) {
15+
return 0;
16+
}
17+
18+
// Loop through as long as i is not pointing to last element and j is not exceeding the vector index
19+
while (((i + 1) < size) && (j < size)) {
20+
// Loop through if j's number is not larger than i's
21+
while ((j + 1) < size && (nums[j] <= nums[i])) {
22+
// If j is pointing to a number same or smaller than i, move j to next element
23+
j += 1;
24+
}
25+
if (((i + 1) < size) && (j < size) && (nums[j] > nums[i])) {
26+
// If j is not adjacent to i, make i's next number as j's number
27+
if ((j - i) > 1) {
28+
nums[i + 1] = nums[j];
29+
}
30+
i += 1;
31+
}
32+
j += 1;
33+
}
34+
// If i is not the last element and i's number is less than the last number, increment i by 1. If we don't do this, i will never reach the last element. This only happens when all numbers are unique
35+
if (((i + 2) == size) && (nums[i] < nums[size - 1])) {
36+
i += 1;
37+
}
38+
return (i + 1) as i32;
39+
}
40+
}

0 commit comments

Comments
 (0)