Ver originaldef difference(a, b): return [i for i in a if not(i in b)] def intersection(a, b): return [i for i in a if i in b]