mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:14:06 +00:00
7 lines
154 B
C++
7 lines
154 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution {
|
|
public:
|
|
bool canJump(vector<int>& nums);
|
|
bool test(vector<int>& nums, bool answer);
|
|
}; |