IT보안관의 공부 클라우드

[프로그래머스 Lv.1]숫자 문자열과 영단어 본문

코딩 테스트/구름

[프로그래머스 Lv.1]숫자 문자열과 영단어

ㅡㅡㅡㅡㄷ 2022. 6. 19. 15:33

https://programmers.co.kr/learn/courses/30/lessons/81301?language=python3 

 

코딩테스트 연습 - 숫자 문자열과 영단어

네오와 프로도가 숫자놀이를 하고 있습니다. 네오가 프로도에게 숫자를 건넬 때 일부 자릿수를 영단어로 바꾼 카드를 건네주면 프로도는 원래 숫자를 찾는 게임입니다. 다음은 숫자의 일부 자

programmers.co.kr

dict1 = {'zero':'0','one':'1','two':'2','three':'3','four':'4','five':'5','six':'6','seven':'7','eight':'8','nine':'9'}

def solution(s):
    answer = 0
    for k,v in dict1.items():
        print(k,v)
        if k in s:
            s=s.replace(k,v)
    return int(s)

print(solution("one4seveneight"))

 

1. 딕셔너리를 통해 각 문자를 Key로 치환해야 할 값을 Value로 저장

2. k 값(영문)을 for문을 통해 s에서 검색 후 Value 값으로 치환

 

Comments