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.
The random tests compare returned results with themselves.
Thanks Zed, I've put some in.
Thanks Voile, your right. I've filled in blanks with a null value to fix the issue.
Note that array declarations like
[5,"johnsmith88@codewars.com",]
actually results in[5,"johnsmith88@codewars.com"]
because (at most 1) trailing comma in array/object declaration are taken away. So most of the empty data has a length of2
, not3
.Needs Random Tests.