当前位置:网站首页>118. 杨辉三角
118. 杨辉三角
2022-07-07 11:38:00 【yitahutu79】
给定一个非负整数 numRows,生成「杨辉三角」的前 numRows 行。
在「杨辉三角」中,每个数是它左上方和右上方的数的和。
示例 1:
输入: numRows = 5
输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
示例 2:
输入: numRows = 1
输出: [[1]]
提示:
1 <= numRows <= 30
class Solution {
public:
vector<vector<int>> generate(int numRows) {
vector<vector<int>> ret(numRows);
for (int i = 0; i < numRows; i++) {
ret[i].resize(i+1);
for (int j = 0; j <= i; j++) {
if (j == 0 || j == i) {
ret[i][j] = 1;
}
else {
ret[i][j] = ret[i-1][j-1] + ret[i-1][j];
}
}
}
return ret;
}
};
边栏推荐
- MongoDB复制(副本集)总结
- Vscode编辑器ESP32头文件波浪线不跳转彻底解决
- About how appium closes apps (resolved)
- Scrapy教程经典实战【新概念英语】
- User management summary of mongodb
- JS function 返回多个值
- 实现IP地址归属地显示功能、号码归属地查询
- 1. Deep copy 2. Call apply bind 3. For of in differences
- Isprs2021/ remote sensing image cloud detection: a geographic information driven method and a new large-scale remote sensing cloud / snow detection data set
- Ogre入门尝鲜
猜你喜欢
随机推荐
Getting started with MySQL
centso7 openssl 报错Verify return code: 20 (unable to get local issuer certificate)
error LNK2019: 无法解析的外部符号
Isprs2021/ remote sensing image cloud detection: a geographic information driven method and a new large-scale remote sensing cloud / snow detection data set
聊聊伪共享
分屏bug 小记
社会责任·价值共创,中关村网络安全与信息化产业联盟对话网信企业家海泰方圆董事长姜海舟先生
Navicat运行sql文件导入数据不全或导入失败
云计算安全扩展要求关注的安全目标和实现方式区分原则有哪些?
Why can basic data types call methods in JS
Digital IC Design SPI
Vscade editor esp32 header file wavy line does not jump completely solved
迅为iTOP-IMX6ULL开发板Pinctrl和GPIO子系统实验-修改设备树文件
[QNX Hypervisor 2.2用户手册]6.3.4 虚拟寄存器(guest_shm.h)
OSI 七层模型
php——laravel缓存cache
Xshell connection server changes key login to password login
How to make join run faster?
Drawerlayout suppress sideslip display
室內ROS機器人導航調試記錄(膨脹半徑的選取經驗)