Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Created April 19, 2017 22:44
Show Gist options
  • Save pbojinov/c820edb3932c51f356a333028dd1dd74 to your computer and use it in GitHub Desktop.
Save pbojinov/c820edb3932c51f356a333028dd1dd74 to your computer and use it in GitHub Desktop.
List Intersections
a = [1,2,3]
b = [1,2,3,4,5]
x = list(set(b) - set(a))
y = list(set(b) - set(b).intersection((set(a))))
print x == y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment