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

leetcode575

时间:2017-05-09 12:37:20      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:ret   key   return   .com   title   int   tco   dict   problem   

public class Solution {
    public int DistributeCandies(int[] candies) {
        var dic = new Dictionary<int, int>();
            var len=candies.Length;
            var result = 0;
            foreach (var candy in candies)
            {
                if (!dic.ContainsKey(candy))
                {
                    dic.Add(candy, 1);
                }
                else
                {
                    dic[candy]++;
                }
            }
            if (dic.Count >= len / 2)
            {
                result = len / 2;
            }
            else
            {
                result = dic.Count;
            }
            return result;
    }
}

https://leetcode.com/problems/distribute-candies/#/description

leetcode575

标签:ret   key   return   .com   title   int   tco   dict   problem   

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

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