135. Candy
LeetCode 135. Candy
Description
Input: ratings = [1,0,2]
Output: 5
Explanation: You can allocate to the first, second and third child with 2, 1, 2 candies respectively.Input: ratings = [1,2,2]
Output: 4
Explanation: You can allocate to the first, second and third child with 1, 2, 1 candies respectively.
The third child gets 1 candy because it satisfies the above two conditions.Tags
Solution
Solution1:
Solution 2:


Complexity
Solution1:
Solution 2:
Code
Solution1:
Solution 2:
Reference
Last updated