Jump Game II leetcode python 2016 new Season__python

Source: Internet
Author: User

Given an array of non-negative integers, your are initially positioned at the the the the The.

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

Your goal is to reach the last index in the minimum number of jumps.

For example:
Given array A = [2,3,1,1,4]

The minimum number of jumps to reach the last index is 2. (Jump 1 step from index 0 to 1, then 3 steps to the last index.)

Note:
You can assume so you can always to the last index.

Show Tags Have your met this question in a real interview? Yes No

Discuss


Class Solution (object):
    def jump (self, Nums): ""
        : Type Nums:list[int]
        : rtype:int
        "" Count = 0 Last
        = 0 reach 
        = 0 to I in
        range (len (nums)):
            If i > Last: Last
                = reach
                count + + 1< C12/>reach = max (reach, i + nums[i]) return
        count


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.