mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:14:07 +00:00
10 lines
203 B
C++
10 lines
203 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> nums = {7, -1, 0, 1, 2, 3, 4, 5, 6};
|
|
int answer = -1;
|
|
Solution soln;
|
|
cout << "Found minimum correctly? " << soln.test(nums, answer) << endl;
|
|
return 0;
|
|
} |