Everyday a Leetcode Problem - 26. Remove Duplicates from Sorted Array
Everyday a Leetcode Problem - 26. Remove Duplicates from Sorted Array
Today we come with this simple problem but mine isn’t so statistically impressive again, all because of you erase()
!
Link to problem: 26. Remove Duplicates from Sorted Array.
Ideas
This problem is kinda too simple for an idea to work, I am lazy for a brilliant one.
You will use a for loop to erase duplicate elements in the vector.
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Solution {
public:
int removeDuplicates(vector<int>& nums) {
int n = 0;
for (std::vector<int>::iterator it = nums.begin()+1; it != nums.end();)
{
if (nums[n] == nums[n+1])
it = nums.erase(it);
else {
it++;
n++;
}
}
return nums.size();
}
};
From the idea to the realization, the problem is the variable type to fit with the functions of the library, haha.
See ya next time!
This post is licensed under CC BY 4.0 by the author.