🔻나의 풀이
function solution(array, height) {
let count = 0;
array.forEach(x => x > height ? count++ : null)
return count;
}
🔻다른 사람의 풀이
function solution(array, height) {
var answer = array.filter(item => item > height);
return answer.length;
}
forEach를 사용해보고싶어서 시도 해봤는데
반복문 사용 없이 filter를 사용해서 풀 수 있었다..!