This commit is contained in:
2022-11-21 21:10:37 +08:00
parent 38a20a3c7f
commit 9fc414b433
3 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0034_FIND_FIRST_AND_LAST_POSITION_OF_ELEMENT_IN_SORTED_ARRAY
#define S0034_FIND_FIRST_AND_LAST_POSITION_OF_ELEMENT_IN_SORTED_ARRAY
#include <vector>
#include <cmath>
using namespace std;
class Solution {
public:
vector<int> searchRange(vector<int>& nums, int target);
};
#endif