Skip to content

Instantly share code, notes, and snippets.

@etozzato
Created December 1, 2014 05:48
Show Gist options
  • Save etozzato/1ea8b2f3fe07ddec8d46 to your computer and use it in GitHub Desktop.
Save etozzato/1ea8b2f3fe07ddec8d46 to your computer and use it in GitHub Desktop.
Binary Combinations for spreadsheet
0.upto(8){|i| puts i.to_s(2).rjust(4,'0').split(//).join("\t")}
# =>
# 0 0 0 0
# 0 0 0 1
# 0 0 1 0
# 0 0 1 1
# 0 1 0 0
# 0 1 0 1
# 0 1 1 0
# 0 1 1 1
# 1 0 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment