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

leetcode118

时间:2017-04-21 17:28:26      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:blog   rip   ==   generate   style   for   leetcode   pascal   new   

public class Solution {
    public IList<IList<int>> Generate(int numRows) {
        var list = new List<IList<int>>();

            for (int i = 0; i < numRows; i++)
            {
                var row = new List<int>();
                if (i == 0)
                {
                    row.Add(1);
                }
                else if (i == 1)
                {
                    row.Add(1);
                    row.Add(1);
                }
                else
                {
                    var prerow = list[i - 1].ToList();

                    for (int j = 0; j <= i; j++)
                    {
                        if (j == 0)
                        {
                            row.Add(1);
                        }
                        else if (j == i)
                        {
                            row.Add(1);
                        }
                        else
                        {
                            row.Add(prerow[j - 1] + prerow[j]);
                        }
                    }
                }
                list.Add(row);
            }

            return list;
    }
}

https://leetcode.com/problems/pascals-triangle/#/description

leetcode118

标签:blog   rip   ==   generate   style   for   leetcode   pascal   new   

原文地址:http://www.cnblogs.com/asenyang/p/6744558.html

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