Skip to content

Instantly share code, notes, and snippets.

@toymak3r
Created December 29, 2019 03:11
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 toymak3r/c22d89f38204fd5b7960b8f3cbb30757 to your computer and use it in GitHub Desktop.
Save toymak3r/c22d89f38204fd5b7960b8f3cbb30757 to your computer and use it in GitHub Desktop.
Binary Gap in Python
def binary_gap(N):
return len(max(format(N, 'b').strip('0').split('1')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment