def solution(s):
answer = s
num_s = {'zero':0, 'one':1, 'two':2, 'three':3, 'four':4, 'five':5, 'six':6, 'seven':7, 'eight':8, 'nine':9}
for item in num_s.items():
answer = answer.replace(item[0], str(item[1]))
return int(answer)
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 우유와 요거트가 담긴 장바구니 (0) | 2023.10.09 |
---|---|
[프로그래머스] 헤비 유저가 소유한 장소 (0) | 2023.10.09 |
[프로그래머스] 문자열 내 마음대로 정렬하기 (0) | 2023.10.09 |
[프로그래머스] K번째 수 (0) | 2023.10.09 |
[프로그래머스] 가장 가까운 같은 글자 (0) | 2023.10.09 |