分糖果
class Solution {
public int distributeCandies(int[] candyType) {
Set<Integer> set = new HashSet<Integer>();
for (int candy : candyType) {
set.add(candy);
}
return Math.min(set.size(), candyType.length / 2);
}
}
糖果种类m
Set set = new HashSet();
HashSet.
for (int candy : candyType)
foreach.