This commit is contained in:
2022-11-15 15:38:15 +08:00
parent 210604981d
commit 381117a18a
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef S0027_REMOVE_ELEMENT
#define S0027_REMOVE_ELEMENT
#include <vector>
using namespace std;
class Solution {
public:
int removeElement(vector<int>& nums, int val);
};
#endif