Candy Leader Check
Imagine giving all the extra candies to each child one at a time and checking whether they would become a leader. Given a list candies, where each value is one child’s candy count, and a number extra_candies, return a list of booleans. For each child, return True if adding all extra candies would give them at least as many candies as any child has now.
Примеры
Ввод
[2, 3, 5, 1, 3], 3Вывод
[True, True, True, False, True]Ввод
[4, 2, 1, 1, 2], 1Вывод
[True, False, False, False, False]Ввод
[12, 1, 12], 10Вывод
[True, False, True]Нужно реализовать
def kids_with_candies(candies: list[int], extra_candies: int) -> list[bool]:
Теги
array
Sign in to see submission history
Sign inSign in to use AI Mentor
Sign inTests12
Visible tests
Hidden test 7
Hidden test 8
Hidden test 9
Hidden test 10
Hidden test 11
Hidden test 12
They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.
Focus radio
Paused · SomaFM · Fluid