Skip to content

Instantly share code, notes, and snippets.

@CodeDrome
Created August 11, 2022 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeDrome/5902a6914c31cbedd925a67f62e37822 to your computer and use it in GitHub Desktop.
Save CodeDrome/5902a6914c31cbedd925a67f62e37822 to your computer and use it in GitHub Desktop.
xor
a = 45 # 00101101 = 45
b = 99 # 01100011 = 99
a = a ^ b # 01001110 = 78 (irrelevant intermediate value)
b = a ^ b # 00101101 = 45
a = a ^ b # 01100011 = 99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment