Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Regex solution in Clear category for Morse Decoder by StefanPochmann
import re
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):
return re.sub(' ?(\S+) ?', lambda m: morse[m.group(1)], code).capitalize()
April 6, 2018
Comments: