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

leetcode554

时间:2017-06-09 10:08:47      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:href   https   count   ems   ast   color   each   leetcode   length   

public class Solution {
    public int LeastBricks(IList<IList<int>> wall) {
        if (wall.Count == 0)
            {
                return 0;
            }
            int count = 0;
            Dictionary<int, int> map = new Dictionary<int, int>();
            foreach (var list in wall)
            {
                int length = 0;
                for (int i = 0; i < list.Count - 1; i++)
                {
                    length += list[i];
                    if (!map.ContainsKey(length))
                    {
                        map.Add(length, 1);
                    }
                    else
                    {
                        map[length]++;
                    }
                    count = Math.Max(count, map[length]);
                }
            }
            return wall.Count - count;
    }
}

https://leetcode.com/problems/brick-wall/#/description

leetcode554

标签:href   https   count   ems   ast   color   each   leetcode   length   

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

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