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

119. Pascal's Triangle II

时间:2017-03-18 20:55:21      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:res   map   span   object   row   amp   self   code   win   

Given an index k, return the kth row of the Pascal‘s triangle.

For example, given k = 3,
Return [1,3,3,1].

 自己写的~~

 1 class Solution(object):
 2     def getRow(self, rowIndex):
 3         """
 4         :type rowIndex: int
 5         :rtype: List[int]
 6         """
 7         
 8         res=[[1]]
 9         for i in range(1,rowIndex+1):
10             res += [map(lambda x,y: x+y, res[-1]+[0], [0]+res[-1])]
11         return res[rowIndex]

for i in range(1,2): i 只能取到1

119. Pascal's Triangle II

标签:res   map   span   object   row   amp   self   code   win   

原文地址:http://www.cnblogs.com/fullest-life/p/6575572.html

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