Problem 394. Convert String to Morse Code

Created by NeoGenesis

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 = '--.--.-...--... ..... --.-------..'

Tags

Problem Group

26 solvers submitted 83 solutions (3.19 solutions/solver).