반응형
2021 카카오 채용연계형 인턴십
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)
반응형
'DS > Coding Test' 카테고리의 다른 글
[Python][BFS] 거리두기 확인하기 (0) | 2023.05.17 |
---|---|
[Python] 개인정보 수집 유효기간 (0) | 2023.05.17 |
[Python][Greedy] 체육복 (1) | 2023.05.16 |
[Python][dot product] 내적 (0) | 2023.05.15 |
[Python][스택/큐] 올바른 괄호 (0) | 2023.05.13 |