This commit is contained in:
2022-11-21 20:50:10 +08:00
parent a18ee1e5d7
commit 38a20a3c7f
3 changed files with 91 additions and 0 deletions

View File

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