2023년 1월 15일
링크 : https://school.programmers.co.kr/learn/courses/30/lessons/120956
function solution(babbling) {
const word = ['aya', 'ye', 'woo', 'ma']
let count = 0
const result = babbling.map(x => {
word.map(y => (x = x.replace(y, '1')))
if (!isNaN(x)) count = count + 1
})
return count
}
이전에 0레벨이 없었던 것 같은데, 그 중 가장 정답률 적은것으로 풀어봤습니다.
뭔가 정규표현식을 사용하면 더 쉽게도 가능하겠지만, 나쁘지 않은것 같습니다.