프로그래밍 문제/[Python] CheckIO
[Check-IO] Morse Decoder
UltraLowTemp-Physics
2021. 3. 8. 14:40
Problem: py.checkio.org/en/mission/morse-decoder/
My solution:
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', '-----': '0',
'.----': '1', '..---': '2', '...--': '3',
'....-': '4', '.....': '5', '-....': '6',
'--...': '7', '---..': '8', '----.': '9'
}
def morse_decoder(code):
#replace this for solution
words_list = code.split(' ') # splitting words
dummy = []
for words in words_list:
char_list = words.split(' ') # splitting characters in a word
# de_char: decorded Morse code
de_char = list(map(lambda x : MORSE[x], char_list))
dummy.append(''.join(de_char)) # collect the words
return ' '.join(dummy).capitalize() # combine the words
if __name__ == '__main__':
print("Example:")
#print(morse_decoder('... --- ...'))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert morse_decoder("... --- -- . - . -..- -") == "Some text"
assert morse_decoder("..--- ----- .---- ---..") == "2018"
assert morse_decoder(".. - .-- .- ... .- --. --- --- -.. -.. .- -.--") == "It was a good day"
print("Coding complete? Click 'Check' to earn cool rewards!")