码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode--Pascal's Triangle

时间:2014-12-27 11:26:52      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

题目:

技术分享

解决方案:

public class Solution {
    public List<List<Integer>> generate(int numRows) {
        List<List<Integer>> lists=new ArrayList<List<Integer>>();
        for(int i=0;i<numRows;i++){
            List<Integer> list=new ArrayList<Integer>();
            for(int j=0;j<=i;j++){
                if(j==0||j==i){
                    list.add(1);
                    continue;
                }
                int temp=lists.get(i-1).get(j)+lists.get(i-1).get(j-1);
                list.add(temp);
            }
            lists.add(list);
        }
        return lists;
    }
}


LeetCode--Pascal's Triangle

标签:

原文地址:http://blog.csdn.net/wj512416359/article/details/42191657

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!