We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题连接:https://leetcode-cn.com/problems/jump-game/
解题思路:
[2,3,1,1,4]
[3,2,1,0,4]
/** * @param {number[]} nums * @return {boolean} */ var canJump = function(nums) { let max = 0 // 存储遍历到的所有位置向前走之后,可到达的最远位置 for (let i = 0; i < nums.length; i++) { // 如果当前位置已经超过了最远位置,表示从之前的所有位置向前走,都不可能到达i及其之后的位置 if (i > max) { return false } // 计算至今遍历到的所有位置,向前走nums[i]步后,可能到达的最大位置 max = Math.max(max, i + nums[i]) // 如果最远位置已可到达最后一个位置,即可退出循环 if (max >= nums.length - 1) { return true } } };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题连接:https://leetcode-cn.com/problems/jump-game/
解题思路:
[2,3,1,1,4]
:[3,2,1,0,4]
:The text was updated successfully, but these errors were encountered: