[Leetcode] 1431. Kids With the Greatest Number of Candies (JS)

OROSY·2021년 4월 27일
1

Algorithms

목록 보기
4/38
post-thumbnail

출처

Leetcode 1431. Kids With the Greatest Number of Candies

문제

코드

1
2
3
4
5
6
7
8
9
10
11
/**
 * @param {number[]} candies
 * @param {number} extraCandies
 * @return {boolean[]}
 */
var kidsWithCandies = function(candies, extraCandies) {
    let max = candies.reduce(function(a, b) {
    return Math.max(a, b);
});
   return candies.map(x => x + extraCandies >= max) 
};
cs

실행 결과

profile
Life is a matter of a direction not a speed.

0개의 댓글