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.
Nice. I actually used a float for my minute calculation...appears that was unncessary.
Not sure what language you are using, but try to print out what the inputs are for debugging purposes.
Thanks
Do you realize that you're supposed to remove the
raise
statement from your solution?Getting the following error and I'm not sure why:
Traceback (most recent call last):
File "main.py", line 6, in
Test.assert_equals(remove_smallest([1, 2, 3, 4, 5]), [2, 3, 4, 5], "Wrong result for [1, 2, 3, 4, 5]")
File "/home/codewarrior/solution.py", line 3, in remove_smallest
raise NotImplementedError("TODO: remove_smallest")
NotImplementedError: TODO: remove_smallest