This commit is contained in:
2022-11-15 15:16:56 +08:00
parent 5f1b40adc4
commit 210604981d
3 changed files with 47 additions and 0 deletions

View File

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