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.
dang how did we all end up with the exact same code lmfao
Much better than mine
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
When in Python the test reads:
Test.assert_equals(boolean_to_string(True), "True", 'When we pass in true, we want the string "true" as output')
Test.assert_equals(boolean_to_string(False), "False", 'When we pass in false, we want the string "false" as output')
but the test is only passed if the strings that are outputted are capitalized (again in Python here) --- so the test in Python might should read
Test.assert_equals(boolean_to_string(True), "True", 'When we pass in True, we want the string "True" as output')
Test.assert_equals(boolean_to_string(False), "False", 'When we pass in False, we want the string "False" as output')