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.
Java actual and expected are swapped. Opening an issue to edit the kata.
The assertion in Java should be:
assertEquals(4, Kata.findGCF(8,20));
, so, yes, that's an issue. The post below yours says exactly that.assertEquals(Kata.findGCF(8,20), 4);
expected:<8> but was:<4>
Error?