首页 > 其他 > 详细

LeetCode#118 Pascal's Triangle

时间:2015-07-21 21:47:07      阅读:236      评论:0      收藏:0      [点我收藏+]

Problem Definition:

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]
]


Solution: 关于杨辉三角

 1 def generate(numRows):
 2         pt=[]
 3         for rn in range(numRows):
 4             row=[0]*(rn+1)
 5             row[0],row[rn]=1,1    
 6             for cl in range(1,rn):
 7                 p1=pt[rn-1][cl-1]
 8                 p2=pt[rn-1][cl]
 9                 row[cl]=p1+p2
10             pt+=[row]
11         return pt

 




LeetCode#118 Pascal's Triangle

原文:http://www.cnblogs.com/acetseng/p/4665500.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!