728x90
def solution(babbling):
answer = 0
talk = ["aya", "ye", "woo", "ma"]
for b in babbling:
for w in talk:
if w in b :
b = b.replace(w, ' ')
if len(b.strip()) == 0: # strip 맨앞, 맨뒤 공백 제거.
answer += 1
return answer
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 점의 위치 구하기(Python) (0) | 2023.09.13 |
---|---|
프로그래머스 스쿨 - 자릿수 더하기(Python) (0) | 2023.09.12 |
프로그래머스 스쿨 - 옷가게 할인 받기(Python) (0) | 2023.09.10 |
프로그래머스 스쿨 - 양꼬치(Python) (0) | 2023.09.09 |
프로그래머스 스쿨 - 아이스 아메리카노(Python) (0) | 2023.09.08 |