Created
March 8, 2012 01:55
-
-
Save hrstt/1997980 to your computer and use it in GitHub Desktop.
配列の転置 ref: http://qiita.com/items/3060
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
# Array#transpose | |
a = [[1,2,3],[4,5,6],[7,8,9]] | |
a.transpose | |
#=> [[1, 4, 7], [2, 5, 8], [3, 6, 9]] | |
# same return | |
a[0].zip(*a[1..-1]) | |
#=> [[1, 4, 7], [2, 5, 8], [3, 6, 9]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment