SMALL
문제 출처
풀이 코드
def solution(s):
alpha = {
'zero': 0, 'one': 1, 'two':2, 'three':3, 'four': 4, 'five': 5, 'six': 6,
'seven':7, 'eight':8, 'nine':9
}
for key, num in alpha.items():
s=s.replace(key, str(num))
answer = int(s)
return answer
LIST
'알고리즘-python > Programmers 문제' 카테고리의 다른 글
[프로그래머스/2단계/파이썬(Python3)] 점프와 순간이동 (0) | 2021.07.14 |
---|---|
[프로그래머스/2단계/파이썬(Python3)] 캐시 (0) | 2021.07.13 |
[프로그래머스/2단계/파이썬(Python3)] 더 맵게 (0) | 2021.07.08 |
[프로그래머스/2단계/파이썬(Python3)] 삼각달팽이 (0) | 2021.07.07 |
[프로그래머스/1단계/파이썬(Python3)] 모의고사 (0) | 2021.07.04 |