Their input is [0,1,2,2,3,0,4,2] 2 My Output: [0,1,2,3,0,4] Expected: [0,1,4,0,3]
class Solution { public: int removeElement(vector& nums,