Solutions Codewars katas
Codewars is a community of developers, who are called Code Warriors (or just warriors), that train on improving their development skills. Think of it like a coding dojo - where developers train with each other and help each other get better through practice.
- Kata: is an algorithm you have to solve in any programming language you desire
- Kyu: is a digit that determines kata difficulty level as well as the user rank on the platform
There's a folder for each kata nested in its own kyu
├── 6-kyu/
│ ├── Create iterator.js
│ └── ...
│
├── 4-kyu/
│ ├── Adding Big Numbers.js
│ └── ...
│
└── ...
// With npm
npm i
// With yarn
yarn
To generate a new file
// With npm
npm run createKata [kataId] [language]
// With yarn
yarn run createKata [kataId] [language]
kataId - https://www.codewars.com/kata/
create-iterator/javascript
language: - should be lowercase
In example
yarn run createKata create-iterator javascript
- JavaScript
- TypeScript