https://programmers.co.kr/learn/courses/30/lessons/81301
내 풀이 :
def solution(s):
number = {'zero':'0','one':'1','two':'2','three':'3','four':'4','five':'5','six':'6','seven':'7','eight':'8','nine':'9'}
answer=''
temp=''
for i in s:
if i.isdecimal():
answer+=i
else:
temp+=i
if temp in number.keys():
answer+=number[temp]
temp=''
return int(answer)
깔끔한 풀이 :
num_dic = {"zero":"0", "one":"1", "two":"2", "three":"3", "four":"4", "five":"5", "six":"6", "seven":"7", "eight":"8", "nine":"9"}
def solution(s):
answer = s
for key, value in num_dic.items():
answer = answer.replace(key, value)
return int(answer)
- dict와 덜 친하고, replace를 사용할 생각을 못했던 것 같다.
- 더 친해져야 겠다.
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 소수 만들기(Python) (0) | 2021.09.27 |
---|---|
[프로그래머스] 음양 더하기(Python) (0) | 2021.09.27 |
[프로그래머스] 등굣길(Python) (0) | 2021.08.12 |
[프로그래머스] 2 x n 타일링(Python) (0) | 2021.08.12 |
[프로그래머스] 이중우선순위큐(Python) (0) | 2021.08.12 |
댓글