Skip to content

Instantly share code, notes, and snippets.

@patrickgombert
Created February 28, 2012 04:14
Show Gist options
  • Save patrickgombert/1929394 to your computer and use it in GitHub Desktop.
Save patrickgombert/1929394 to your computer and use it in GitHub Desktop.
inject example
def sum_elements_multiplied_by_two(elements)
elements.inject { |sum, em| sum += em * 2 }
end
sum_elements_multiplied_by_two([0, 10, 15, 20]) # => 90
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment