java刷题--118杨辉三角
Posted Anrys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java刷题--118杨辉三角相关的知识,希望对你有一定的参考价值。
题目
代码
class Solution {
public List<List<Integer>> generate(int numRows) {
List<List<Integer>> res = new ArrayList();
for(int i=0;i<numRows;i++) {
List<Integer> level = new ArrayList();
for(int j=0;j<=i;j++) {
if(j==0||j==i) level.add(1);
else {
level.add(res.get(i-1).get(j-1)+res.get(i-1).get(j));
}
}res.add(level);
}return res;
}
}
结果
以上是关于java刷题--118杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章
[JavaScript 刷题] DP - 杨辉三角, leetcode 118
Leecode刷题之旅-C语言/python-118杨辉三角
Leetcode刷题100天—118. 杨辉三角(数组)—day25