#ifndef S0034_FIND_FIRST_AND_LAST_POSITION_OF_ELEMENT_IN_SORTED_ARRAY_HPP #define S0034_FIND_FIRST_AND_LAST_POSITION_OF_ELEMENT_IN_SORTED_ARRAY_HPP #include using namespace std; class S0034 { public: vector searchRange1(vector& nums, int target); vector searchRange2(vector& nums, int target); }; #endif