1431. Kids With the Greatest Number of Candies
#array
Last updated
#array
Last updated
Given an integer array, where candies[i]
represents the number of candies the kid has.
Return a boolean array result
of length n
, where result[i]
is true
if post giving the kid all the extraCandies
, they will have the greatest number of candies among all the kids, or false
otherwise.
Find the kid with maximum candies & compare with each kid if given extra candies he will have the most or not.
Iterate over the array to find the kid with maximum candies.
Iterate over the array again to check if candies[i] + extraCandies
is greater or equal to the kid with maximum candies.
Only extra space is used to store the result
We itreate over the array only once