Skip to content

Instantly share code, notes, and snippets.

@peteb
Created July 29, 2014 09:57
Show Gist options
  • Save peteb/6c0d72a14a27de5a87a2 to your computer and use it in GitHub Desktop.
Save peteb/6c0d72a14a27de5a87a2 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