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.
In python it's impossible to solve it.
There are syntax errors in the test cases and it fails:
It should be:
Test.assert_equals(reverseWords("hello world!"), "world! hello")
Not:
test.assert_equals(reverseWords("hello world!"), "world! hello")
The description says return 'Empty'. The tests test for 'None'
Renamed to sequence.
I couldnt find your translations neither in Katas or Kumite!
Ok I can add some random tests.
Done. Thanks!
It would be nice if we could use a mock testign framework to test more things.
Renamed.
Done, thanks i forgot about them
Yes I know about the 2nd issue but I'm not sure if I can 'force' the user to use the stack parameter in some way.
1.Replace 'return any multiple of 3 with the string "THREE"" et al. with return 'THREE' if the number is a multiple of 3...
2.Missing : for example function
Add test for list in list.
assert last([1,2,[3,4]]) == 4
Add a testcase for all negatives.
e.g.
test.assert_equals(maxSequence([-2, -3,-1, -5]), -1)
The true knock of this website :)
the examples are missing from the description