Post

Everyday a Leetcode Problem - 27. Remove Elements

Everyday a Leetcode Problem - 27. Remove Elements

Let’s move on to next day problem! I am doing Top Interview 150 if you wonder.

Here is the link for today’s problem: 27. Remove Elements.

Ideas

  • Use erase() and remove() functions to remove the elements equal to val.
  • Use sort() and copy constructor to make expectedNums;
  • Return like requirements.

Explanation

  • The remove() function rearranges the elements in the range [vec.begin(), vec.end()], removing all elements that are equal to val. It returns an iterator to the new end of the range.
  • The erase() function is then used to actually remove the elements from the vector, effectively resizing it.

Solution

1
2
3
4
5
6
7
8
9
class Solution {
public:
    int removeElement(vector<int>& nums, int val) {
        nums.erase(remove(nums.begin(),nums.end(),val),nums.end());
        sort(nums.begin(), nums.end());
        vector<int> expectedNums(nums);
        return expectedNums.size();
    }
};

The runtime and the memory is hell but I am lazy to code longer…


See you next time!

This post is licensed under CC BY 4.0 by the author.