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.
I got 0 for finishing it in PHP. It deserves a 8kyu in PHP and even that is too much
Same thing happened to me!
Ты пидар!
I encountered this bug a few times, additionally 2 of my Katas are effected. It happens when you vote on a beta Kata with minor issue. For some reason the comment is then not seen as related to the issue, so there is no way to resolve it.
But, it can still be removed by the user who initiated it, by selecting ready.
Seems like a bug.
Description says :
Maybe you should test
arguments.length
beforetypeof
"list" ( which is only the first argument )...Your solution fails on
last argument
because yourif
statements test only first argument (named "list").That means if the test case looks like, for example,
last('hello','b',c','z')
your solution returns "o" (last char of first argument) but it should return 'z' (the last argument),or
last([1,2,3],[4,5,6],[7,8,9])
it returns3
(last item of[1,2,3]
) when it should return[7,8,9]
(the last arg. which, in this case, is an array)