Created
February 28, 2012 04:14
-
-
Save patrickgombert/1929394 to your computer and use it in GitHub Desktop.
inject example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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