6 lines
61 B
Ruby
6 lines
61 B
Ruby
|
|
def Σ(array)
|
||
|
|
array.inject(:+)
|
||
|
|
end
|
||
|
|
|
||
|
|
puts Σ([4,5,6]) #=>15
|