• 周六. 10 月 12th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

LeetCode 118. 杨辉三角 JAVA

King Wang

1 月 3, 2022

给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。

示例:
输入: 5
输出:
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
class Solution {

public List<List<Integer>> generate(int numRows) {

List<List<Integer>> res=new ArrayList<>();
if(numRows==0) return res;
res.add(new ArrayList<>());
res.get(0).add(1);
for(int i=1;i<numRows;i++){

List<Integer> list=new ArrayList<>();
list.add(1);
List<Integer>tmp=res.get(i-1);
for(int j=1;j<i;j++){

list.add(tmp.get(j-1)+tmp.get(j));
}
list.add(1);
res.add(list);
}
return res;
}
}

发表回复