Skip to content

Instantly share code, notes, and snippets.

@marvinahv
Created September 6, 2015 00:31
Show Gist options
  • Save marvinahv/6acdd98dd194b589abcd to your computer and use it in GitHub Desktop.
Save marvinahv/6acdd98dd194b589abcd to your computer and use it in GitHub Desktop.
### If you get an array of numbers, sum its numbers.
def sum_array_numbers(numbers)
numbers.inject(:+)
end
sum_array_numbers([10, 24, 11, 3, 14, 24])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment