Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Okay thanks for this.
I think all Scala katas are slow (in a compiling sense). For example, I tried this simple kata on Scala and got ~5-6 seconds time. Running time was 65ms, so the remaining time is the compiling time.
From my own experience, this is typical behavior for all Scala projects that use SBT as a build tool.
Yeah you're right.
Are the tests slow because the cipher object is slow or is it just becasue all scala katas are slow?
Thanks)
These 7 seconds consist of compiling time + running time.
Most of the time is the compiling time.
Reducing random tests will not give us serious benefits. Compiling time will remain the same.
This is my first translation, so maybe I'm wrong.
Hey - nice work ;)
Could you reduce the random tests so that your solution doesn't take more then like 7 seconds?
Scala translation has been added.