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.
you can use list slices
This comment is hidden because it contains spoiler information about the solution
oh right, still confused regarding that way of writing code. Thanks :)
That return actually outside the loop, because he didnt add {}. The loop without curly bracket only take one action.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
No, you have to return
n
numbers of the sequence, counting the ones of the signature too. So, the signature always has 3 elements, but ifn
is 0, you return an empty array/list, whenn
is 1, the first element of the signature, etc. I hope it is clearer now.nice, I came up with the same code.:D except the return is outside the loop
yes, that's what the instructions said, but somehow the tests performed should also pass with signature given as [],[1] and [1,2] otherwise there will be failed tests.
You're confused there, signature always has 3 numbers:
n
can be less than 3.Any new programmers here? Hope you add me.
P.S. my current language is JavaScript
This comment is hidden because it contains spoiler information about the solution