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.
thank you for making me discover the zip function
Thank you! Good work!
thank you, your scritp so good
a method to rotate 2D list based on zip
Thank you for this!
So elegant. A great example to us learners - thank you.
This is almost too simple compared to my wacky, naive, barely working solution, lol. Speechless.
Wow!!!
Too clever.
It's the best
you need to learn about time complexities, apparently... ;)
For those who still wonder, a line += extends and array, it can have input of tuple or list, it will still extend the array with the items in the list
arr = []
arr += (1,2,3)
arr = [1, 2, 3]
This is definetly the best solution in this thread!
This brilliant solution gave me goosebumps! Great job and thank you for inspiration.
Actual best practice solution, I never thought of just rotating the array, instead transposing and hard coding the paths. This achieves the exact same thing with two lines hahah
Loading more items...