Skip to content

Instantly share code, notes, and snippets.

@koriroys
Created July 30, 2012 17:46
Show Gist options
  • Save koriroys/3208652 to your computer and use it in GitHub Desktop.
Save koriroys/3208652 to your computer and use it in GitHub Desktop.
Binary patterns
MAX = 64
zero_fill = MAX.to_s(2).size
[*0..MAX].each do |num|
puts "%#{zero_fill}d" % num.to_s(2) + " - #{num}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment