LeetCode - 2798. Number of Employees Who Met the Target

henu·2023년 8월 31일
0

LeetCode

목록 보기
24/186
post-thumbnail

Solution

var numberOfEmployeesWhoMetTarget = function(hours, target) {
    return hours.filter(e => e >= target).length;
};

Explanation

간단하게 filter 메소드를 사용해서 target 이상인 요소들만 추려내면 해결됐다.

0개의 댓글