码迷,mamicode.com
首页 > 其他好文 > 详细

768 · 杨辉三角

时间:2021-04-09 13:21:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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

768 · 杨辉三角

标签:return   @param   class   def   杨辉三角   输出   n+1   append   The   

原文地址:https://www.cnblogs.com/bernieloveslife/p/14635115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!