Decode the Morse code
Description:
In this kata you have to write a simple Morse code decoder. While the Morse code is now mostly superseded by voice and digital data communication channels, it still has its use in some applications around the world.
The Morse code encodes every character as a sequence of "dots" and "dashes". For example, the letter A
is coded as ·−
, letter Q
is coded as −−·−
, and digit 1
is coded as ·−−−−
. The Morse code is case-insensitive, traditionally capital letters are used. When the message is written in Morse code, a single space is used to separate the character codes and 3 spaces are used to separate words. For example, the message HEY JUDE
in Morse code is ···· · −·−− ·−−− ··− −·· ·
.
NOTE: Extra spaces before or after the code have no meaning and should be ignored.
In addition to letters, digits and some punctuation, there are some special service codes, the most notorious of those is the international distress signal SOS (that was first issued by Titanic), that is coded as ···−−−···
. These special codes are treated as single special characters, and usually are transmitted as separate words.
Your task is to implement a function that would take the morse code as input and return a decoded human-readable string.
For example:
decode_morse('.... . -.-- .--- ..- -.. .')
#should return "HEY JUDE"
NOTE: For coding purposes you have to use ASCII characters .
and -
, not Unicode characters.
The Morse code table is preloaded for you as a dictionary, feel free to use it:
- Coffeescript/C++/Go/JavaScript/Julia/PHP/Python/Ruby/TypeScript:
MORSE_CODE['.--']
- C#:
MorseCode.Get(".--")
(returnsstring
) - F#:
MorseCode.get ".--"
(returnsstring
) - Elixir:
@morse_codes
variable (fromuse MorseCode.Constants
). Ignore the unused variable warning formorse_codes
because it's no longer used and kept only for old solutions. - Elm:
MorseCodes.get : Dict String String
- Haskell:
morseCodes ! ".--"
(Codes are in aMap String String
) - Java:
MorseCode.get(".--")
- Kotlin:
MorseCode[".--"] ?: ""
orMorseCode.getOrDefault(".--", "")
- Racket:
morse-code
(a hash table) - Rust:
MORSE_CODE
- Scala:
morseCodes(".--")
- Swift:
MorseCode[".--"] ?? ""
orMorseCode[".--", default: ""]
- C: provides parallel arrays, i.e.
morse[2] == "-.-"
forascii[2] == "C"
- NASM: a table of pointers to the morsecodes, and a corresponding list of ascii symbols
All the test strings would contain valid Morse code, so you may skip checking for errors and exceptions. In C#, tests will fail if the solution code throws an exception, please keep that in mind. This is mostly because otherwise the engine would simply ignore the tests, resulting in a "valid" solution.
Good luck!
After you complete this kata, you may try yourself at Decode the Morse code, advanced.
Similar Kata:
Stats:
Created | Jan 15, 2015 |
Published | Jan 15, 2015 |
Warriors Trained | 385486 |
Total Skips | 60880 |
Total Code Submissions | 1078076 |
Total Times Completed | 119927 |
Python Completions | 38931 |
JavaScript Completions | 37537 |
Ruby Completions | 4272 |
Java Completions | 14053 |
C# Completions | 9330 |
TypeScript Completions | 3466 |
PHP Completions | 2853 |
Haskell Completions | 933 |
C++ Completions | 4012 |
CoffeeScript Completions | 36 |
Elixir Completions | 313 |
Go Completions | 2255 |
Rust Completions | 1738 |
Kotlin Completions | 1286 |
Scala Completions | 455 |
Elm Completions | 109 |
Lua Completions | 124 |
C Completions | 676 |
Julia Completions | 54 |
Swift Completions | 385 |
NASM Completions | 8 |
F# Completions | 38 |
Racket Completions | 25 |
Total Stars | 5650 |
% of votes with a positive feedback rating | 89% of 14129 |
Total "Very Satisfied" Votes | 11235 |
Total "Somewhat Satisfied" Votes | 2602 |
Total "Not Satisfied" Votes | 292 |