1354. 杨辉三角形II

1354. 杨辉三角形II

 
给定非负索引k,其中k≤33,返回杨辉三角形的第k个索引行。

样例

样例1
输入: 3
输出: [1,3,3,1]
样例2
输入: 4
输出: [1,4,6,4,1]

挑战

你可以优化你的算法到空间复杂度为O(k)吗?

注意事项

  1. 注意行下标从 0 开始
  2. 在杨辉三角中,每个数字是它上面两个数字的总和。
 
 
public class Solution {
    /**
     * @param rowIndex: a non-negative index
     * @return: the kth index row of the Pascal's triangle
     */
    public List<Integer> getRow(int rowIndex) {
        // write your code here
        List<Integer> result=new ArrayList<>();
            long lotteryOdds = 1;
            result.add(1);
            for (int i = 1; i <= rowIndex; i++) {
                lotteryOdds = lotteryOdds * (rowIndex - i + 1) / i;
                result.add((int) lotteryOdds);
            }
            return result;
    }
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

时代我西

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值