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.
Difficulty : Easy
很简单。。不多说了。
int removeElement(vector<int>& nums, int val) {
int len = nums.size();
int cou = 0;
for(int i =0; i<len;i++){
if(nums[i]==val){
nums[i]=2147483647;
cou++;
}
}
sort(nums.begin(),nums.end());
return len - cou;
}