Leetcode118-Pascal's Triangle

118. Pascal's Triangle

Given numRows, generate the first numRows of Pascal's triangle.

For example, given numRows = 5,
Return

[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]

My Solution

class Solution(object):
    def generate(self, numRows):
        """
        :type numRows: int
        :rtype: List[List[int]]
        """
        if numRows == 0:
            return []
        if numRows == 1:
            return [[1]]
        if numRows == 2:
            return [[1], [1, 1]]
        result, sub = [[1], [1, 1]], [1]
        for i in range(2, numRows):
            for j in range(1, i):
                sub.append(result[i-1][j-1] + result[i-1][j])
            sub.append(1)
            result.append(sub)
            sub = [1]
        return result

Reference (转)

def generate(self, numRows):
        res = [[1]]
        for i in range(1, numRows):
            res += [map(lambda x, y: x+y, res[-1] + [0], [0] + res[-1])]
        return res[:numRows]
Example:
       1 3 3 1 0 
    +  0 1 3 3 1
    =  1 4 6 4 1
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 14,354评论 0 33
  • 「可恶!真是气死我了。」她狠狠挂断电话。 「怎么?男友又惹妳生气了?」他旁敲侧击道。 「他这么糟糕,老是惹妳不高兴...
    garro阅读 3,101评论 0 0
  • 一栋栋的高楼大厦 一排排的格子间亮着的灯 记载着整个城市的故事 一点一点连成线的路灯 站成马路两旁的永恒 一幕幕演...
    脑洞大开的小屁孩阅读 2,286评论 0 0
  • 我原来都不知道,你已住进我心里 无论爱情,还是友情 我原来都不在意,你已成为我至亲 无论命运,还是天意 我原来都不...
    王子骞阅读 3,233评论 1 4
  • Fang_OSH阅读 12,399评论 0 0

友情链接更多精彩内容