본문 바로가기

DEVELOP/Algorithm

[leetcode] 1431. Kids With the Greatest Number of Candies

반응형

Q. Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has. For each kid check if there is a way to distribute extraCandies among the kids such that he or she can have the greatest number of candies among them. Notice that multiple kids can have the greatest number of candies.

 

  
  let kidsWithCandies = function(candies, extraCandies) {
      let maxCandiesNum = Math.max(...candies);
      let boolMaxCandies = candies.map(function(idx){
          idx += extraCandies;
          if(idx>=maxCandiesNum) return true;
          else if(idx<maxCandiesNum) return false;
      });
      return boolMaxCandies;
  };
  
  

 

반응형