I have 2 arrays. For example
x= [1,2,3,4,5] y= [a,b,c,d,e]
How do I merge them so that I have an array like below
z=[[1,a],[2,b],[3,c],[4,d],[5,e]]
The short answer is.....
x.zip y
Does x.zip(y) answer your needs?
x.zip(y)
1.9.3p194 :011 > x= [1,2,3,4,5] => [1, 2, 3, 4, 5] 1.9.3p194 :012 > y= ['a','b','c','d','e'] => ["a", "b", "c", "d", "e"] 1.9.3p194 :013 > x.zip(y) => [[1, "a"], [2, "b"], [3, "c"], [4, "d"], [5, "e"]]
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
10 months ago
viewed
71 times
active