1 2 3 4 5 6 7 8 9 10
def solution(x, y): # x and y are two list of integers for el in x: if not el in y: return el for el in y: if not el in x: return el