Guest User

Untitled

a guest
Oct 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class DistributeCandies {
  2. func distributeCandies(_ candies: [Int]) -> Int {
  3. return Set(candies).count > candies.count/2 ? candies.count/2 : Set(candies).count
  4. }
  5. }
Add Comment
Please, Sign In to add comment