119.杨辉三角 II

题目描述

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

UUA7VA.gif

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

示例:

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

进阶:

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

题解

思路

跟118题思路一样

Python:

1
2
3
4
5
6
class Solution:
def getRow(self, rowIndex: int) -> List[int]:
res = [1]
while len(res)-1 < rowIndex:
res = [a+b for a, b in zip([0]+res, res+[0])]
return res