def solution(babbling): answer = 0 say = ["aya", "ye", "woo", "ma"] for i in babbling: for j in say: if j*2 not in i: i=i.replace(j, ' ') print(i) if i.strip() == '': answer += 1 return answer 반복되는 단어를 제외하고, 가능한 발음을 공백으로 치환시킨다. 공백을 했을 때 빈 문자열이면 answer += 1