leetcode/include/s0026_remove_duplicates_from_sorted_array.hpp
2022-11-21 21:15:56 +08:00

14 lines
230 B
C++

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