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.
Well, kata is right :D
If you changed all your
print(suma)
forreturn suma
you should see here the results instead ofNone
in the CW trainer. If you're testing your code in another place, you'll have to print the returned value to see it, like this:print(get_sum(0,1))
. There is a problem with your code, check how you defineliczby
in one case and in another, you missed something in one of them.Please read this. Your function should return the result, not print it.