Skip to content

Instantly share code, notes, and snippets.

@Flushot
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save Flushot/19e643e02598803036f1 to your computer and use it in GitHub Desktop.

Select an option

Save Flushot/19e643e02598803036f1 to your computer and use it in GitHub Desktop.
One's complement in Python
def ones_complement(x):
return x ^ ((1 << x.bit_length()) - 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment