LeetCode - 1431. Kids With the Greatest Number of Candies

henu·2023년 8월 31일
0

LeetCode

목록 보기
26/186
post-thumbnail

Solution

var kidsWithCandies = function(candies, extraCandies) {
    const max = Math.max(...candies);

    return candies.map(e => e + extraCandies >= max);
};

Explanation

Math.max()를 이용해서 최대 캔디 개수를 얻는다.
그리고 map 메소드를 이용해서 기존 캔디 개수와 extraCandies를 더했을때 max보다 같거나 큰 지를 판별하면된다.

0개의 댓글