Your task is to write a function, that decodes Morse code and returns a string.
Write your solution in src/index.js
Input: String. Its length is multiple of 10.
- Each letter from alphabet encoded with dots(
.) and dashes(-).10stands for dot(.),11stands for dash(-). - Each encoded letter's length is 10.
- If the length of the encoded letter is less then 10, it
left paddedwith0. Spacein string is**********.
Output: String (decoded) Example:me->m === -- === 0000001111,e === . === 0000000010->00000011110000000010
- Install Node.js
- Clone this repository:
https://github.com/romacher/morse-decoder.git - Go to the folder
morse-decoder - Run
npm installin command line - Run
npm testin command line - You will see the number of passed and failed tests
Submit to rs app
- Open rs app and login
- Go to submit task page
- Select your task (morse-decoder)
- Press the submit button and enjoy
- We recommend you to use nodejs of version 14 or lower. If you using any of features that does not supported by node v10, score won't be submitted.
- Please be sure that each of your test in limit of 30sec.