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.
Hi,
Sorry, but you are wrong in your 2.2+ points. "Choose exactly one element from the sequence and replace it with another integer > 0. You are not allowed to replace a number with itself, or to change no number at all.".
exactly one element
- nothing about the first element, !=1 element, etc. ([42, 42, 42] => [1, 42, 42]
)Be careful, you should sort your output:
[42, 32, 22] => [1, 22, 32]
I hope this will be helpful