문제링크
https://programmers.co.kr/learn/courses/30/lessons/81301
내 풀이
import re
def solution(s):
l = ['zero','one','two','three','four','five','six','seven','eight','nine']
for i, k in enumerate(l): s = re.sub(k, str(i), s)
return int(s)
피드백
없음
'코딩 문제 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 크레인 인형뽑기 게임 (python) (0) | 2022.05.09 |
---|---|
[프로그래머스] 키패드 누르기 (python) (0) | 2022.05.06 |
[프로그래머스] 신규 아이디 추천 (python) (0) | 2022.05.06 |
[프로그래머스] 신고 결과 받기 (python) (0) | 2022.05.05 |
[프로그래머스] 순위 (python) (0) | 2022.02.08 |