Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.24 KB

119-pascals-triangle-ii.md

File metadata and controls

48 lines (30 loc) · 1.24 KB

119. Pascal's Triangle II - 杨辉三角 II

给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。

在杨辉三角中,每个数是它左上方和右上方的数的和。

示例:

输入: 3
输出: [1,3,3,1]

进阶:

你可以优化你的算法到 O(k) 空间复杂度吗?


题目标签:Array

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 40 ms N/A
class Solution:
    def getRow(self, rowIndex):
        """
        :type rowIndex: int
        :rtype: List[int]
        """
        res = [1]
        for i in range(1, rowIndex+1):
            res.append(res[i-1] * (rowIndex-i+1)//i)
        return res