Jump Game Leetcode Python

Source: Internet
Author: User

Given an array of non-negative integers, you is initially positioned at the first index of the array.

Each element of the array represents your maximum jump length is at that position.

Determine if you is able to reach the last index.

for example:
a = [2,3,1,1,4" , Return true .

A = [3,2,1,0,4] , return false .

This is a greedy problem with each step we need to check fastest reach step. If There is a step cannot help we step further that means we cannot reach the end.

Code is as follow:

<pre name= "code" class= "Python" >class Solution:    # @param A, a list of integers    # @return A Boolean    def C Anjump (self, A):        index=0        reach=0        If Len (a) <=1:            return True while        Index<len (a):            if Reach<index:                return False            Reach=max (reach,a[index]+index)            index+=1        return True       


Jump Game Leetcode Python

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.