#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 Solution1 { public: vector searchRange(vector& nums, int target); }; class Solution2 { public: vector searchRange(vector& nums, int target); }; #endif