Kata, randories and stuff
You have different possibilities to run the tests and practice katas with this repo:
- Simply open the project on Stackblitz. No account required.
- GitHub codespace, if you have a GitHub account.
- You can also run the project locally. You'll need to install dependencies with
npm ci, then run the tests withnpm test.
https://kata-log.rocks/fizz-buzz-kata
- Write a function that returns a number passed as argument
- For multiples of three return
Fizzinstead of the number - For the multiples of five return
Buzzinstead of the number - For numbers which are multiples of both three and five return
FizzBuzzinstead of the number
https://kata-log.rocks/roman-numerals-kata
Write a function that takes a number and converts it to the according string representation.