summaryrefslogtreecommitdiff
path: root/progs/a871.py
blob: 1a0e562023129b239141a539c6c509f43d49c4d2 (plain)
1
2
3
4
5
def same_order(l1, l2):
    common_elements = set(l1) & set(l2)
    l1 = [e for e in l1 if e in common_elements]
    l2 = [e for e in l2 if e in common_elements]
    return l1 == l2