给定一个非负整数 numRows
,生成「杨辉三角」的前 numRows
行。
在「杨辉三角」中,每个数是它左上方和右上方的数的和。
示例 1:
输入: numRows = 5
输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
示例 2:
输入: numRows = 1
输出: [[1]]
# 解题:
class Solution(object):
def generate(self, numRows):
"""
:type numRows: int
:rtype: List[List[int]]
"""
res = [[1]*(i+1)for i in range(numRows)]
if numRows>2:
for i in range(2,numRows):
for j in range(1, i):
res[i][j] = res[i-1][j-1] + res[i-1][j]
return res
标签:示例,int,res,numRows,range,杨辉三角 From: https://www.cnblogs.com/jizg/p/17126380.html