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.
There is no such test, you're confusing the logs, you returned
[1,2,3,4]
instead ofNone
, print the input.When you see in Python an error like this:
The first value is what your function wrongly returned, the second value is the expected one, to know the input value, you should print it and it'll appear above the test result, read this: https://docs.codewars.com/training/troubleshooting#print-input
For this case you must return
[1, 2, 3, 5]
.