getRow

Posted athony

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getRow相关的知识,希望对你有一定的参考价值。

技术图片

给定一个非负索引?k,其中 k?≤?33,返回杨辉三角的第 k 行。
在杨辉三角中,每个数是它左上方和右上方的数的和。

示例:

输入: 3
输出: [1,3,3,1]

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

以上是关于getRow的主要内容,如果未能解决你的问题,请参考以下文章

asp getrows问题

[ASP]GetRows的用法详解

RecordSet 上的 GetRows 不会存储 Access DB 中的文本列

pb 下拉数据窗口getrow变化时触发啥事件

sheet.getRow(rowIndex);为null_POI导出excel

asp网站问题getrow()