summaryrefslogtreecommitdiff
path: root/skipping-work/solutions.py
blob: 85d7c477a0be9d602481c69ef20a9f0b0f27b95a (plain)
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