Skip to content

Instantly share code, notes, and snippets.

@peroon
Created February 28, 2017 12:07
Show Gist options
  • Select an option

  • Save peroon/d606cdf6b4660ea2f43f1218d7a232da to your computer and use it in GitHub Desktop.

Select an option

Save peroon/d606cdf6b4660ea2f43f1218d7a232da to your computer and use it in GitHub Desktop.
A = set([1,2,3])
B = set([2,3,4])
A ^ B
=> set([1, 4])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment