1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/kids-with-the-greatest-number-of-candies.cs

7 lines
221 B
C#
Raw Normal View History

public class Solution {
public IList<bool> KidsWithCandies(int[] candies, int extraCandies) {
var max = candies.Max();
return candies.Select(candies => candies + extraCandies >= max).ToList();
}
}