leetcode/include/s0026_remove_duplicates_fro...

14 lines
227 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0026_REMOVE_DUPLICATES_FROM_SORTED_ARRAY_HPP
#define S0026_REMOVE_DUPLICATES_FROM_SORTED_ARRAY_HPP
2022-11-15 07:16:56 +00:00
#include <vector>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0026 {
2022-11-15 07:16:56 +00:00
public:
int removeDuplicates(vector<int>& nums);
};
#endif