118. 杨辉三角

118. 杨辉三角 - 力扣(LeetCode) (leetcode-cn.com)

class Solution {

    public List> generate(int numRows) {

        List> res = new ArrayList<>();

        for(int i=0;i

            List tmp = new ArrayList<>();

            for(int j=0;j<=i;j++){

                if(j==0||j==i){

                    tmp.add(1);

                }else{

                    tmp.add(res.get(i-1).get(j-1)+res.get(i-1).get(j));

                }

            }

            res.add(tmp);

        }

        return res;

    }

}   

你可能感兴趣的:(118. 杨辉三角)