575. 分糖果思维

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了575. 分糖果思维相关的知识,希望对你有一定的参考价值。


https://leetcode-cn.com/problems/distribute-candies/

class Solution {
public:
    int distributeCandies(vector<int>& ve) {
        unordered_map<int,int>mp;
        for(int i=0;i<ve.size();i++) mp[ve[i]]++;
        return min(mp.size(),ve.size()/2);
    }
};

以上是关于575. 分糖果思维的主要内容,如果未能解决你的问题,请参考以下文章

575. 分糖果

575. 分糖果

leetcode打卡——去重之575. 分糖果

LeetCode 575 分糖果[set] HERODING的LeetCode之路

LeetCode 575. 分糖果

LeetCode 575. 分糖果 / 237. 删除链表中的节点 / 407. 接雨水 II