title: "[프로그래머스] 모스부호 (1) Python 파이썬 해설 (Level 0) - 이도훈"
cleanUrl: "programmers/120838"
description: "프로그래머스 Level 0 문제 [모스부호 (1)]의 풀이를 정리합니다."
morse = {
'.-':'a','-...':'b','-.-.':'c','-..':'d','.':'e','..-.':'f',
'--.':'g','....':'h','..':'i','.---':'j','-.-':'k','.-..':'l',
'--':'m','-.':'n','---':'o','.--.':'p','--.-':'q','.-.':'r',
'...':'s','-':'t','..-':'u','...-':'v','.--':'w','-..-':'x',
'-.--':'y','--..':'z'
}
def solution(letter):
return ''.join([morse[code] for code in letter.split()])
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges