Maximum Candies Allocated to K Children
Problem
⛶//same as coco eating bananas,
//capacity to ship packages within d days
//aggresive cows
class Solution {
public int maximumCandies(int[] candies, long k) {
long sum = 0;
...