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.
This comment is hidden because it contains spoiler information about the solution
Interesting, i though python always passed parameters by reference! thanks!
Nope.
See http://lunar.s-ul.eu/bM1wWRVI
Yeah i think you are right, as python always passes parameters by reference.. Hmmm on this case it would not matter as they not specify, but generally you would want to make a copy of the pointer on another object and move that other object and not the original one.. i may edit my solution now to include that xD thanks!! :)
Yeah you are very right. I came across the second argument yesterday when I was solving another kata and it crossed my mind how silly I was solving some other katas. Thank you very much for your comment!