Skip to content

Kseniya8765/morse-decoder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Morse code decoder

Task

Your task is to write function, that decode Morse code and return string. Write your solution in src/index.js


Input: String. It length is multiple of 10.

  • Eache letter from alphabet encoded with 10 for . and 11 for -.
  • Each encoded letter's length is 10.
  • If length of encoded letter is less then 10, it lefft padded with 0.
  • Space in string is **********.
    Output: String (decoded)

Prepare and test

  • Install Node.js
  • Clone this repository: https://github.com/romacher/morse-decoder.git
  • Go to folder morse-decoder
  • Run npm install in command line
  • Run npm test in command line
  • You will see the number of passing and failing tests

Submit to rs app

  1. Open rs app and login
  2. Go to submit task page
  3. Select your task (morse-decoder)
  4. Press the submit button and enjoy

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%