55. Jump Game LeetCode Solution
In this guide, you will get 55. Jump Game LeetCode Solution with the best time and space complexity. The solution to Jump Game problem is provided in various programming languages like C++, Java, and Python. This will be helpful for you if you are preparing for placements, hackathons, interviews, or practice purposes. The solutions provided here are very easy to follow and include detailed explanations.
Table of Contents
- Problem Statement
- Complexity Analysis
- Jump Game solution in C++
- Jump Game solution in Java
- Jump Game solution in Python
- Additional Resources
Problem Statement of Jump Game
You are given an integer array nums. You are initially positioned at the array’s first index, and each element in the array represents your maximum jump length at that position.
Return true if you can reach the last index, or false otherwise.
Example 1:
Input: nums = [2,3,1,1,4]
Output: true
Explanation: Jump 1 step from index 0 to 1, then 3 steps to the last index.
Example 2:
Input: nums = [3,2,1,0,4]
Output: false
Explanation: You will always arrive at index 3 no matter what. Its maximum jump length is 0, which makes it impossible to reach the last index.
Constraints:
1 <= nums.length <= 104
0 <= nums[i] <= 105
Complexity Analysis
- Time Complexity: O(n)
- Space Complexity: O(1)
55. Jump Game LeetCode Solution in C++
class Solution {
public:
bool canJump(vector<int>& nums) {
int i = 0;
for (int reach = 0; i < nums.size() && i <= reach; ++i)
reach = max(reach, i + nums[i]);
return i == nums.size();
}
};
/* code provided by PROGIEZ */
55. Jump Game LeetCode Solution in Java
class Solution {
public boolean canJump(int[] nums) {
int i = 0;
for (int reach = 0; i < nums.length && i <= reach; ++i)
reach = Math.max(reach, i + nums[i]);
return i == nums.length;
}
}
// code provided by PROGIEZ
55. Jump Game LeetCode Solution in Python
class Solution:
def canJump(self, nums: list[int]) -> bool:
i = 0
reach = 0
while i < len(nums) and i <= reach:
reach = max(reach, i + nums[i])
i += 1
return i == len(nums)
# code by PROGIEZ
Additional Resources
- Explore all LeetCode problem solutions at Progiez here
- Explore all problems on LeetCode website here
Happy Coding! Keep following PROGIEZ for more updates and solutions.