1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/kids-with-the-greatest-number-of-candies.cs
2024-01-07 16:05:10 +01:00

6 lines
221 B
C#

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