s0026
This commit is contained in:
13
include/s0026_remove_duplicates_from_sorted_array.hpp
Normal file
13
include/s0026_remove_duplicates_from_sorted_array.hpp
Normal 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
|
Reference in New Issue
Block a user