This is a lib of solutions for Codewars (https://www.codewars.com) katas. Mainly its to learn basic skills in new languages.
I also added config files for some IDEs (vscode) to show how they have to be configured for debugging certain languages.
- You can start the Typescript tests by
npm run test
in the typescript_lang folder - To start a single test run for example
npm run test -- --grep "hasCorrectBrackets"
- Start tests simply by
ruby TESTFILE.rb
- Start tests simply in the folder by
go test
- Sbt is needed for build and run
- inside
codewars/scala
- run
sbt test
to run all tests - run
sbt "test:testOnly DescendingOrderSpec"
to run onlyDescendingOrderSpec
test - run
sbt "test:testOnly DescendingOrderSpec -- -z complexer"
ro run only tests matching substringcomplexer
- run