#ifndef S0033_SEARCH_IN_ROTATED_SORTED_ARRAY_HPP #define S0033_SEARCH_IN_ROTATED_SORTED_ARRAY_HPP #include #include using namespace std; class S0033 { public: int search(vector& nums, int target); }; #endif