Problem 394. Convert String to Morse Code
Convert a given string to international Morse Code
- Strings will only have [A-z], [0-9] and space characters
- A string must be returned with dots (.), dashes (-) and spaces between words
For example:
given str = 'MATLAB is good' return ystr = '--.--.-...--... ..... --.-------..'