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 are typos in the description. I remember currently only one "hugh" instead of "huge"
My solution doesn't pass the Test Case, while it correctly passes the Submition. Something is wrong with the Test Case, especially with printing and logging right after printing.
You're 100% right. I've misread it.
Well, the output should be non-negative integers while in this solutions there is no checking whether it is non-negative.
matrix = [[1, 2], [3, 4]]
rotateMatrix(matrix)
print matrix
this is how you should check whether rotation has been done in place (meaning: changing input data)
Rotating in place isn't checked.
The output should be done "in place", while even without change of input value (matrix value), the output is marked as correct, which is simply wrong. This is major issue.