Skip to content

Instantly share code, notes, and snippets.

Created July 29, 2014 09:58
Show Gist options
  • Save anonymous/ab03866d97b337beb6d5 to your computer and use it in GitHub Desktop.
Save anonymous/ab03866d97b337beb6d5 to your computer and use it in GitHub Desktop.
nums = (1..3).to_a
nums.zip(nums.drop(1)).map { |_, x2| x2 } #=> [2, 3, nil]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment