力扣https://leetcode-cn.com/problems/pascals-triangle-ii/
难度简单328
给定一个非负索引 rowIndex
,返回「杨辉三角」的第 rowIndex
行。
在「杨辉三角」中,每个数是它左上方和右上方的数的和。
示例 1:
输入: rowIndex = 3 输出: [1,3,3,1]
示例 2:
输入: rowIndex = 0 输出: [1]
示例 3:
输入: rowIndex = 1 输出: [1,1]
提示:
0 <= rowIndex <= 33
class Solution {
public List<Integer> getRow(int rowIndex) {
List<List<Integer>> temp = new ArrayList<List<Integer>>();
for(int i=0;i<=rowIndex;i++)
{
List<Integer> ans = new ArrayList<Integer>();
for(int j=0;j<=i;j++)
{
if(j==0 || j==i) ans.add(1);
else
{
ans.add(temp.get(i-1).get(j-1)+temp.get(i-1).get(j));
}
}
temp.add(ans);
}
return temp.get(rowIndex);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/69144.html