[leetcode: Python]575. Distribute Candies(分发糖果)

class Solution:
    def distributeCandies(self, candies):
        """
        :type candies: List[int]
        :rtype: int
        """
        a=len(set(candies))
        b=len(candies)/2
        if a>=b:
            return int(b)
        else:

            return int(a)


思路:

利用Set,set之后的长度,与原始长度的一半(output)进行比较

你可能感兴趣的:(机器学习,数据挖掘,leetcode)