def mystery_2(L):
    M = L[0::2]
    N = L[1::2]
    if M == [] or N == []:
        return False
    elif sum(M) == sum(N):
        return True
    else:
        return mystery_2(M)\
           and mystery_2(N)