[프로그래머스] 숫자 문자열과 영단어(파이썬, 자바)
내 답 def solution(s): dict={'zero':'0','one':'1','two':'2','three':'3','four':'4','five':'5','six':'6','seven':'7','eight':'8','nine':'9'} result='' temp='' for i in s: if i.isdigit(): result+=i continue temp+=i if temp in dict: result+=dict[temp] temp='' return int(result) 다른 사람의 답 num_dic = {"zero":"0", "one":"1", "two":"2", "three":"3", "four":"4", "five":"5", "six":"6", "seven":"7", "eight":"..