给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。
在杨辉三角中,每个数是它左上方和右上方的数的和。
示例:
输入: 5
输出:
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
该题目可以先将所需要的结果放入二维数组中,根据numRows的值进行for循环,对二维数组依次进行赋值,同时将值放入集合中
class Solution {
public List<List<Integer>> generate(int numRows) {
List<List<Integer>> list = new ArrayList<>();
int[][] arr = new int[numRows][numRows];
for (int i = 0; i < numRows; i++) {
List<Integer> subList = new ArrayList<>();
for (int j = 0; j <= i; j++) {
if (j==0||j==1){
arr[i][j]=1;
}else{
arr[i][j]=arr[i-1][j-1]+arr[i-1][j];
}
subList.add(arr[i][j]);
}
list.add(subList);
}
return list;
}
}