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.
Hello, looks like a misprint in kata description:
["TEAM C", "6", "5"]
instead of
["TEAM C", "6", "4"], or
TEAM C won two matches (1x0 and 3x2). Receives 6 points and a total of 4 scored goals.
instead of
TEAM C won two matches (1x0 and 3x2). Receives 6 points and a total of 5 scored goals.
It's not mentioned how this should be handled. Sort by name or appearance in initial list?
Object properties are unordered and can appear in different orders when equals objects are stringified.
Objects should be compared with
assertDeepEquals
.Random tests still don't compare values with
Test.assertApproxEquals
. Comparing floats approximately means they're compared with a margin, and without any rounding.Initial code is missing.
( Sigh )
Needs random tests.
Did you read the tutorial?