728x90
반응형
풀이
파이썬 내장함수 replace를 사용하면 아주 쉽게 풀 수 있다.
def solution(s):
li = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
for i in range(10):
s = s.replace(li[i], str(i))
return int(s)
728x90
반응형
'Agorithm > 프로그래머스' 카테고리의 다른 글
프로그래머스 Level 1 로또의 최고 순위와 최저 순위 (0) | 2022.06.16 |
---|---|
프로그래머스 Level 1 크레인 인형뽑기 게임 (0) | 2022.06.14 |
프로그래머스 Level 1 키패드 누르기 (0) | 2022.06.13 |
프로그래머스 Level 3 단어 변환 (0) | 2021.07.15 |
프로그래머스 Level 3 네트워크 (0) | 2021.07.15 |