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.
Approved.
Sample tests are still unfixed.
fixed
Issue: JUnit uses
assertEquals(expected, actual)
argument order.Since JDK 17
java.util.Random
implements theRandomGenerator
interface which provides default implementations ofnextInt(lo, hi)
for all random classes. NeverthelessThreadLocalRandom
has the nicer prng algorithm.Math.random()
, really? There areRandom::ints(lo, hi)
, andRandom::nextInt(hi)
, andThreadLocalRandom::nextInt(lo, hi)
today.