题目:
给定一个非负整数
numRows
, 生成「杨辉三角」的前 *numRows
*行。在「杨辉三角」中,每个数是它左上方和右上方的数的和。
来源:力扣(LeetCode)
链接:力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台
示例:
示例 1:
输入:numRows = 5
输出:[0,1]
解释:[[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
示例 2:
输入:numRows = 1
输出:[[1]]
解法:
寻找规律:
[1, 1] = [0, 1] + [1, 0]
[1, 2, 1] = [0, 1, 1] + [1, 1, 0]
[1, 3, 3, 1] = [0, 1, 2, 1] + [1, 2, 1, 0]
[1, 4, 6, 4, 1] = [0, 1, 3, 3, 1] + [1, 3, 3, 1, 0]
所以第i行=第i-1行左添0+右添0得到。
代码:
pythonclass Solution: def generate(self, numRows: int) -> List[List[int]]: result = [] n = [1] for _ in range(numRows): result.append(n) n = [x + y for x, y in zip([0] + n, n + [0])] return result
力扣:118. 杨辉三角(Python3)
恽劼恒2023-10-03 20:04
相关推荐
qwe3526333 分钟前
自定义数据集使用scikit-learn中的包实现线性回归方法对其进行拟合人生无根蒂,飘如陌上尘22 分钟前
pycharm踩坑(1)I"ll carry you1 小时前
【Django教程】用户管理系统SharkWeek.2 小时前
【力扣Hot 100】普通数组2cuber膜拜2 小时前
jupyter使用 Token 认证登录张登杰踩3 小时前
pytorch2.5实例教程codists3 小时前
《CPython Internals》阅读笔记:p353-p355Change is good3 小时前
selenium定位元素的方法Change is good3 小时前
selenium clear()方法清除文本框内容大懒猫软件8 小时前
如何运用python爬虫获取大型资讯类网站文章,并同时导出pdf或word格式文本?