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 11% | |
#3 | 113 c. | Top 17% | |
#4 | 124 c. | Top 22% | |
#5 | 133 c. | Top 28% | |
#6 | 136 c. | Top 33% | |
#7 | 139 c. | Top 39% | |
#8 | 140 c. | Top 44% | |
#9 | 145 c. | Top 50% | |
#10 | 150 c. | Top 56% | |
#11 | 170 c. | Top 61% | |
#12 | 172 c. | Top 67% | |
#13 | 174 c. | Top 72% | |
#14 | 195 c. | Top 78% | |
#15 | 219 c. | Top 83% | |
#16 | 258 c. | Top 89% | |
#17 | 593 c. | Top 94% | |
#18 | 606 c. | Top 100% |