Skip to content

Instantly share code, notes, and snippets.

@jcromartie
Created April 23, 2014 19:48
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 jcromartie/11229825 to your computer and use it in GitHub Desktop.
Save jcromartie/11229825 to your computer and use it in GitHub Desktop.
class Integer
def to_a
(0..Math.log2(self).ceil).map {|idx| self[idx] }.reverse
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment