Pascal ' s triangle II leetcode Python

Source: Internet
Author: User
Given an index k, return the kth row of the Pascal ' s triangle.


For example, given k = 3,
Return [1,3,3,1].


Note:

Could optimize your algorithm to use only O (k) extra space?

The difference between this and the previous one is that instead of returning all the solutions, you just need to return to the index corresponding row. The procedure defines a currow and Prerow as before


Class solution:    # @return A list of integers    def getRow (self, rowIndex):        rownum=rowindex+1        currow=[1]< C5/>if rownum==1:            return currow        if rownum>0:            currow=[1] for            index in range (rownum):                prerow= Currow                Currow=[1] for                J in Range (index-1):                    currow.append (prerow[j]+prerow[j+1])                currow.append (1)        Return Currow


Pascal ' s triangle II 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.