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 6% | |
#2 | 102 c. | Top 12% | |
#3 | 113 c. | Top 18% | |
#4 | 124 c. | Top 24% | |
#5 | 133 c. | Top 29% | |
#6 | 136 c. | Top 35% | |
#7 | 139 c. | Top 41% | |
#8 | 140 c. | Top 47% | |
#9 | 145 c. | Top 53% | |
#10 | 150 c. | Top 59% | |
#11 | 170 c. | Top 65% | |
#12 | 172 c. | Top 71% | |
#13 | 174 c. | Top 76% | |
#14 | 195 c. | Top 82% | |
#15 | 219 c. | Top 88% | |
#16 | 258 c. | Top 94% | |
#17 | 593 c. | Top 100% |