Skip to content

Instantly share code, notes, and snippets.

@lppier
Created October 5, 2015 06:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lppier/a59adc18bcf32d8545f7 to your computer and use it in GitHub Desktop.
Save lppier/a59adc18bcf32d8545f7 to your computer and use it in GitHub Desktop.
def nextpow2(N):
""" Function for finding the next power of 2 """
n = 1
while n < N: n *= 2
return n
@frijheid
Copy link

Thanks!, you safe my life brother

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment