
Morse Encoder
Your task is to encrypt the text message using the Morse code. The input text will consist of letters (in uppercase and lowercase), numbers and white spaces. There won't be any special characters ('&', '?', '#' etc.)
You need to use 3 spaces between words and 1 space between each letter of each word.
Input: The secret message (str).
Output: The same message (str), but encrypted.
Examples:
assert morse_encoder("some text") ==...
You should be an authorized user in order to see the full description and start solving this mission.