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.
instructions it not clear about sorting stuff need more clarify explanation and some additional example
Description will lead you into O(nlog(n)) solution at most.
It would be helpful to have in the description info that there is a neat O(n) math solution to the problem.
CoffeeScript translation
good kata, but instruction should be clearer regarding sorting
Sample tests for C and NASM have a minor bug, if you get the answer wrong for the array of length 0, you crash with a SIGSEGV. (At first I thought I may have messed up seriously somewhere lol).
This seems to be because you slip into an unwanted loop here:
RISCV Translation
No random tests (not enough tests) and for example your solution doesn't work for groupDuplicatesAndSort([12, 12, 2, 2, 1, 1]) ;-)