Agorithm/프로그래머스
프로그래머스 Level 1 숫자 문자열과 영단어
kimjinho1
2022. 6. 14. 22:05
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
반응형