Ad
  • Custom User Avatar

    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