<p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; color: rgb(51, 51, 51); font-size: 14px; line-height: 30px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;"><strong>Given an array and a value, remove all instances of that value in place and return the new length.</strong></p><p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; color: rgb(51, 51, 51); font-size: 14px; line-height: 30px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;"><strong>The order of elements can be changed. It doesn't matter what you leave beyond the new length.</strong></p>
class Solution {
public:
int removeElement(vector<int>& nums, int val)
{
int start = 0;
for(int i = 0; i <nums.size(); i++)
if (val != nums[i])
{
nums[start++] = nums[i];
}
return start;
}
};