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.
That would work. However, it is a solution inefficient in terms of memory, as you are creating another list having the same size of the original.
There are better ways, as seen in other people's solutions.
+1 to this comment - a whole bunch of the top-rated answers actually fail on this check, so it would be a great idea to add this in to the test cases.
Technically correct; however, the original list was mutated. Try deep-copying the list that was passed in, then work with those values instead. :)