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.
Me as well.
Arg! I didn't think about using the negative 1 to invalidate the lack of a initial bounce. I also didn't know you could do
(< 0 bounce 1)
that is neat.Always like those matches :)
I've got the first 2 stages working in haskell, but the third stage fails with
PatternMatchFail (Main.hs:(12,5)-(21,38): Non-exhaustive patterns in case )
I don't have any non-exhaustive pattern matches or case statements in my code, it seems the
kata is broken for me.
This comment is hidden because it contains spoiler information about the solution
just to explain the task a bit clearer:
this is the number n: 35231
A list with each number as an own entry looks like this:
Now reverse the order of the list like this:
the last number in the list becomes the first, the second-last the second
and so on..