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
I cannot get pass the random tests, no matter how I order the results or sort them by some matter the test never passes
This comment is hidden because it contains spoiler information about the solution
Could you add a Rust version of this kata? I have written my 5x5 solution with expandibility in mind and I would love to see how little changes I would need to implement to make it work on the 15x15 version
Instead of having to include "use std::cmp::max; max(a.1, b.1)" you can just write a.1.max(b.1) instead (ints implement cmp).
That way is more idiomatic and saves you an use statement (unless it's a personal preference then forget I said anything :P)