Created
June 11, 2011 23:18
-
-
Save aziz/1021073 to your computer and use it in GitHub Desktop.
ruby Array: in_coulmns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def in_columns(count) | |
in_groups_of(count).transpose.collect(&:compact) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment