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