Morse Code Translator

Translate a string into morse code.

Easy1/7/2024

Problem statement

Your task is to write a program that takes a string as input and translates it into its equivalent in international Morse code. The input will be a string of lowercase space-separated words where each word consists of nothing but the letters a-z. Add spaces between the words but not between the letters of a word in morse code. Here is the alphabet in morse code:

a: .-      g: --.     m: --      s: ...     y: -.--  
b: -...    h: ....    n: -.      t: -       z: --..  
c: -.-.    i: ..      o: ---     u: ..-     
d: -..     j: .---    p: .--.    v: ...-    
e: .       k: -.-     q: --.-    w: .--     
f: ..-.    l: .-..    r: .-.     x: -..-    

For example, the string

lorem ipsum

should be translated to

.-..---.-..-- ...--......---

Problem leaderboard

#
Size
%
Users
#1
101 c.
Top 7%
Shanethegamer
#2
102 c.
Top 13%
tree
#3
113 c.
Top 20%
AlephSquirrel
#4
124 c.
Top 27%
sean
#5
133 c.
Top 33%
Natanaelel
#6
136 c.
Top 40%
cers
#7
139 c.
Top 47%
val
#8
145 c.
Top 53%
Thomasdcrt
#9
146 c.
Top 60%
voytxt
#10
150 c.
Top 67%
scpchicken
#11
170 c.
Top 73%
davyboyh
#12
172 c.
Top 80%
maximec-indy
#13
174 c.
Top 87%
Pascal
#14
195 c.
Top 93%
ComputerKWasTaken
#15
219 c.
Top 100%
KrausRaus