LeetCode-119.杨辉三角II(相关话题:数组)

Java代码:

class Solution {
    public List<Integer> getRow(int rowIndex) {
        List<Integer> res = new ArrayList<>(rowIndex+1);
        for(int i = 0; i <= rowIndex; i++){
            res.add(1);
            for(int j = i-1; j > 0; j--){
                res.set(j, res.get(j) + res.get(j-1));
            }
        }

        return res;
    }
}
    原文作者:杨辉三角问题
    原文地址: https://blog.csdn.net/weixin_38823568/article/details/83187156
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞