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.
The index calculation in
sud[3*i%3+j%3][j/3]
is incorrect. It doesn't check all blocks – it only checks the top left block.This shouldn't pass the tests, and in fact it sometimes fails the random tests (with roughly 10% probability, according to my tests).
My solution has only 2 cycles, less code and clear enough :)
This comment is hidden because it contains spoiler information about the solution
My solution on Java is the shortest and clear enough :)
Nice solution :)
But for input "n = 8" it returns incorrect result "-1 0 1 2 3 7 "
And also the redundant space " " in the end of String is always returned in results.