summaryrefslogtreecommitdiff
path: root/skipping-work/solutions.py
blob: 31cda09b3a700b45ee9bed9647c85b6d478822cd (plain)
1
2
3
4
5
6
7
8
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