2022-11-21 13:15:56 +00:00
|
|
|
#ifndef S0027_REMOVE_ELEMENT_HPP
|
|
|
|
#define S0027_REMOVE_ELEMENT_HPP
|
2022-11-15 07:38:15 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2022-11-30 10:20:36 +00:00
|
|
|
class S0027 {
|
2022-11-15 07:38:15 +00:00
|
|
|
public:
|
|
|
|
int removeElement(vector<int>& nums, int val);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|