14 lines
186 B
C++
14 lines
186 B
C++
|
#ifndef S0027_REMOVE_ELEMENT
|
||
|
#define S0027_REMOVE_ELEMENT
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
int removeElement(vector<int>& nums, int val);
|
||
|
};
|
||
|
|
||
|
#endif
|