题目:
给定一个非负整数
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
相关推荐
Fantasydg1 分钟前
DAY 35 leetcode 202--哈希表.快乐数jyyyx的算法博客1 分钟前
Leetcode 2337 -- 双指针 | 脑筋急转弯呵呵哒( ̄▽ ̄)"7 分钟前
线性代数:同解(1)SweetCode13 分钟前
裴蜀定理:整数解的奥秘CryptoPP26 分钟前
springboot 对接马来西亚数据源API等多个国家的数据源ゞ 正在缓冲99%…26 分钟前
leetcode76.最小覆盖子串xuanjiong27 分钟前
纯个人整理,蓝桥杯使用的算法模板day2(0-1背包问题),手打个人理解注释,超全面,且均已验证成功(附带详细手写“模拟流程图”,全网首个xcLeigh33 分钟前
OpenCV从零开始:30天掌握图像处理基础大乔乔布斯33 分钟前
AttributeError: module ‘smtplib‘ has no attribute ‘SMTP_SSL‘ 解决方法惊鸿.Jh1 小时前
【滑动窗口】3254. 长度为 K 的子数组的能量值 I