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.
Given the condition, you just need to return the second array.
General advice:
C++ translation kumited. Have fun!
In a Python sandbox, this function returns the right results but I still fail some tests, I don't understand why.
def merge_arrays(first, *second):
if len(second)>0:
for i, elt in enumerate(second):
if elt not in first:
first += elt
else:
first = list(set(first))
first.sort()
return first