[프로그래머스 Lv.1] 연습문제 - 옹알이

김민지·2024년 1월 1일
0

✨ 문제 ✨

✨ 정답 ✨

// 'aya', 'ye', 'woo', 'ma'
const checkPossible=(word)=>{
    let count=0;
    let pList=['aya', 'ye', 'woo', 'ma']
    for (let i=0;i<pList.length;i++){
        if (word.includes(pList[i].repeat(2))){
            break;
        }
        word=word.split(pList[i]).join(' ');
        
    }
    if (word.split(' ').join('').length===0){
        count+=1;
    }
    return count;
}

function solution(babbling) {
    var answer = 0;
    for (let i=0;i<babbling.length;i++){
        answer+=checkPossible(babbling[i], answer);
    }
    return answer;
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

분명 정답률 순으로 정렬해서 풀고 있는데 레벨이 들쭉날쭉이다

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보