#ifndef S0027_REMOVE_ELEMENT #define S0027_REMOVE_ELEMENT #include using namespace std; class Solution { public: int removeElement(vector& nums, int val); }; #endif