This initially began as a "100 Days of Code" personal challenge, where I would complete a code challenge from codewars, hackerrank and the like every day for 100 days straight. Now it's just a repository of code challenges that I've completed. Sort of like a diary, where I look back at past entries and cringe. 😬
If you'd like to give the challenges a shot read the usage instructions below. I've included unit tests for some of the challenges.
Codewars —
- 4 kyu
- 5 kyu
- 6 kyu
- 7 kyu
- 8 kyu
- Arcade
- Challenges
- Company Challenges
- Interview Practice
- 30 Days of Code
- Algorithms
- Data Structures
- Interview Preparation Kit
- Data Structures and Algorithms
- Frontend
- 2018
- clone the repo
npm i
to install dependenciescd
into the directory of your choice- Read through the challenge
README.md
- Solve the challenge in the corresponding
js
orpy
file - Test your solution:
For JavaScript
npm test <filename>
or Python
python tests/<filename>
cd src/codesignal/Company Challenges/Uber/parkingSpot/
- Read the
README.md
- Add your solution code to
parkingSpot.js
npm test parkingSpot
👋