DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Switch The Items Around In An Array
a = [['b2','a1'],['d2','c1']]
a.map!{|x,y| [y,x]} # => [["a1", "b2"], ["c1", "d2"]]
# or
a.map!{|x| x.reverse} # => [["a1", "b2"], ["c1", "d2"]]
# or
a.map!(&:reverse) # => [["a1", "b2"], ["c1", "d2"]]





