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.
Not an issue.
Fixed. Thanks for reporting.
Feel free to use the "ISSUE" tag for such bugs.
In python, the following default test case doesn't run because r is not a valid variable:
print "current List: %r"%r
changing to the following works fine:
print "current List: %r"%a
I was totally confused with the last python set test case:
Test.assert_equals(lowest_product("1234111"),4,"Numbers should be consecutives");
The string "Numbers should be consecutives" should be dropped, as based on the description, the test case stands as proper, and this test case is super confusing.