leetcode/include/s0034_find_first_and_last_position_of_element_in_sorted_array.hpp
2022-11-21 21:15:56 +08:00

15 lines
302 B
C++

#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 <vector>
#include <cmath>
using namespace std;
class Solution {
public:
vector<int> searchRange(vector<int>& nums, int target);
};
#endif