Skip to content

Commit

Permalink
spell corrections suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr_Naumenko committed Oct 7, 2019
1 parent 1bce01e commit e642a9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## Task

Your task is to write function, that decode Morse code and return string.
Your task is to write function, that decodes Morse code and returns 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 `-`.
**Input:** String. Its length is multiple of 10.
- Each 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`.
- If the length of the encoded letter is **less then 10**, it `left padded` with `0`.
- `Space` in string is `**********`.
**Output:** String (decoded)

Expand Down

0 comments on commit e642a9f

Please sign in to comment.