mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:34:06 +00:00
9 lines
196 B
C++
9 lines
196 B
C++
#include "soln.hpp"
|
|
|
|
int main() {
|
|
vector<int> nums = {3,2,1,0,4};
|
|
bool answer = false;
|
|
Solution soln;
|
|
cout << "Checked if can jump correctly? " << soln.test(nums, answer) << endl;
|
|
return 0;
|
|
} |