标签:return @param class def 杨辉三角 输出 n+1 append The
描述
给一整数 n, 返回杨辉三角的前 n 行
0 <= n <= 20
杨辉三角也被叫做帕斯卡三角形. --(Wikipedia)
样例
样例 1:
输入 : n = 4
输出 :
[
[1]
[1,1]
[1,2,1]
[1,3,3,1]
]
class Solution:
"""
@param n: a Integer
@return: the first n-line Yang Hui‘s triangle
"""
def calcYangHuisTriangle(self, n):
res = []
for i in range(1,n+1):
temp = []
for j in range(i):
if j==0 or j==i-1:
temp.append(1)
else:
temp.append(res[-1][j-1] + res[-1][j])
res.append(temp)
return res
标签:return @param class def 杨辉三角 输出 n+1 append The
原文地址:https://www.cnblogs.com/bernieloveslife/p/14635115.html