Translate a string into morse code.
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
.-..---.-..-- ...--......---
# | Size | % | Users |
---|---|---|---|
#1 | 101 c. | Top 5% | |
#2 | 102 c. | Top 11% | |
#3 | 113 c. | Top 16% | |
#4 | 124 c. | Top 21% | |
#5 | 133 c. | Top 26% | |
#6 | 136 c. | Top 32% | |
#7 | 139 c. | Top 37% | |
#8 | 140 c. | Top 42% | |
#9 | 145 c. | Top 47% | |
#10 | 150 c. | Top 53% | |
#11 | 162 c. | Top 58% | |
#12 | 170 c. | Top 63% | |
#13 | 172 c. | Top 68% | |
#14 | 174 c. | Top 74% | |
#15 | 195 c. | Top 79% | |
#16 | 219 c. | Top 84% | |
#17 | 258 c. | Top 89% | |
#18 | 593 c. | Top 95% | |
#19 | 606 c. | Top 100% |