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.
same issue only with random tests on Java. How did the other 339 Java users complete this?
**I have figured it out. Everytime (I thought) I was working with a value of an element from the input array, I was changing the actual input array element, not just working with it's value. The input array stores references not values, even if I created a new (int[][] = l) it just passed the reference to that int[][]. You have to make sure that you are working with the value of the elements, because the elements are just references. That's what this Kata's Sensei means by mutating the input. Important lesson to learn I think, thanks sensei.
thanks!