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.
There's a slight issue in the F# version of this kata: the test cases use
Int64
as bare type annotations (i.e. withoutopen System
or bySystem.Int64
), which means an otherwise valid solution will fail unless it opensSystem
for the tests. Just needs anopen System
tagging onto the top of the testing code to fix, I think.