Given an array and a value, remove all instances of that value in place and return the new length.

The order of elements can be changed. It doesn't matter what you leave beyond the new length.

 

class Solution {
public:
    int removeElement(vector<int>& nums, int val) {
        int length = nums.size();
        int size = 0;
        for(int i= 0;i<length;i++)
        {if(nums[i]!=val)
          {
             nums[size] = nums[i];
             size++;
           
          }
           
           
        }
        return size;
    }
};

相关文章:

  • 2021-09-27
  • 2021-03-31
  • 2021-12-06
  • 2021-06-27
  • 2021-12-29
  • 2022-03-01
  • 2021-07-07
猜你喜欢
  • 2022-01-07
相关资源
相似解决方案