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.
done
Wouldn't using
frequencies
instead ofsort
be better in terms of runtime complexity? It is my understanding thatsort
uses tim-sort---and thus is in O(n * log(n))---whilefrequencies
is in O(n).A reference solution.
Can you enlighten your algo?
Yeah, I'm kind of desperate over this as well. And too busy to write an actual bug report. Any help appreciated..
Something is wrong. I'm continuously getting the message "Submission timed out while communicating with our servers". While basic tests have passed successfully and rather fast (23ms for the maze 13x6).
Usually for slow solutions I get some output and the message "Process was terminated. It took longer than 10000ms to complete".
This comment is hidden because it contains spoiler information about the solution
Great kata!
Please fix '//' comments in clojure basic tests.
Well, never mind. I've done it better.
Hi
I just tried my solution and it passed in 3458ms, so I don't think there is any problem with the tests : )
Maybe there are too much random tests for clojure. My solution passes 68 tests but it takes more than 10000ms and so overall execution fails.