Skip to content

Instantly share code, notes, and snippets.

@Olefine
Created May 27, 2013 09:45
Show Gist options
  • Save Olefine/5656167 to your computer and use it in GitHub Desktop.
Save Olefine/5656167 to your computer and use it in GitHub Desktop.
zip arrays
(1..5).to_a.zip (5..10).to_a
#=> [[1, 5], [2, 6], [3, 7], [4, 8], [5, 9]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment