leetcode/include/s0026_remove_duplicates_fro...

14 lines
227 B
C++

#ifndef S0026_REMOVE_DUPLICATES_FROM_SORTED_ARRAY_HPP
#define S0026_REMOVE_DUPLICATES_FROM_SORTED_ARRAY_HPP
#include <vector>
using namespace std;
class S0026 {
public:
int removeDuplicates(vector<int>& nums);
};
#endif