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

LeetCode Pascal's Triangle

时间:2016-02-26 10:31:13      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

LeetCode解题之Pascal’s Triangle


原题

要求得到一个n行的杨辉三角。

注意点:

例子:

输入: numRows = 5

输出:

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

解题思路

杨辉三角的特点是每一行的第一和最后一个元素是1,其它元素是上一行它左右两个元素之和。以[1,3,3,1]为例,下一行的中间元素就是[1+3,3+3,3+1],也就是[1,3,3]和[3,3,1]对应数字求和。

AC源码

class Solution(object):
    def generate(self, numRows):
        """
        :type numRows: int
        :rtype: List[List[int]]
        """
        if not numRows:
            return []
        result = [[1]]
        while numRows > 1:
            result.append([1] + [a + b for a, b in zip(result[-1][:-1], result[-1][1:])] + [1])
            numRows -= 1
        return result


if __name__ == "__main__":
    assert Solution().generate(4) == [[1], [1, 1], [1, 2, 1], [1, 3, 3, 1]]

欢迎查看我的Github (https://github.com/gavinfish/LeetCode-Python) 来获得相关源码。

LeetCode Pascal's Triangle

标签:

原文地址:http://blog.csdn.net/u013291394/article/details/50747331

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