Skip to content

Instantly share code, notes, and snippets.

@ifyouseewendy
Created March 1, 2015 08:28
Show Gist options
  • Select an option

  • Save ifyouseewendy/7482aa0bcda2d68d4891 to your computer and use it in GitHub Desktop.

Select an option

Save ifyouseewendy/7482aa0bcda2d68d4891 to your computer and use it in GitHub Desktop.
some snippets

How to check N is a power of 2 ?

def is_a_power_of_2?(n)
  puts "#{n} is a power of 2!" if n.bit_length != (n-1).bit_length
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment