mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:34:07 +00:00
11 lines
233 B
C++
11 lines
233 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> nums{4, 5, 6, 7, 0, 1, 2};
|
|
int target = 0;
|
|
int answer = 4;
|
|
Solution soln;
|
|
cout << "Searched rotated sorted array correctly? " << soln.test(nums, target, answer) << endl;
|
|
return 0;
|
|
} |