Add 57 new questions and exercises

This commit is contained in:
abregman
2021-08-13 09:23:50 +03:00
parent 6e01886e6b
commit 3b05d95256
27 changed files with 1981 additions and 242 deletions

View File

@ -0,0 +1,8 @@
## Compress String
1. Write a function that gets a string and compresses it
- 'aaaabbccc' -> 'a4b2c3'
- 'abbbc' -> 'a1b3c1'
2. Write a function that decompresses a given string
- 'a4b2c3' -> 'aaaabbccc'
- 'a1b3c1' -> 'abbbc'