def solution(babbling):
answer = 0
talk = ["aya", "ye", "woo", "ma"]
for t in babbling:
for c in talk:
if c * 2 not in t:
t = t.replace(c, ' ')
if len(t.strip()) == 0:
answer += 1
print(t)
return answer
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 오프라인/온라인 판매 데이터 통합하기 (0) | 2023.10.07 |
---|---|
[프로그래머스] 실패율 (1) | 2023.10.07 |
[프로그래머스] 입양 시각 구하기(2) (0) | 2023.10.07 |
[프로그래머스] 로또의 최고 순위와 최저 순위 (0) | 2023.10.07 |
[코딩테스트 풀이 링크 HUB] (0) | 2023.10.07 |