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.
The
c=
is the declaration. Since there is noconst
,let
orvar
, it's declared as a global variable.But, where are you declare
c
?!bruh
your code length = 52 - Expected: 'code length < 52'
fuck
yep, that's true, missed the order, i think testcases have to handle immutation of the array in final tests
I think you want to prevent modifying the input with that
.slice()
. Which is good. :]But
slice
ing it after you have already sorted it won't help. It's already modified. :\animal.slice().sort()
would do what you (probably) intended to do.