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