This commit is contained in:
Vitor Oliveira 2021-04-14 16:29:37 -07:00 committed by GitHub
parent ae40765c38
commit 0df659abae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
# Addition or sum of numbers means adding each and every element of the inputs
# Sum or addition of 1 and 3 is 1 + 3 = 4
def self_add(*array)
def add(*array)
sum = 0
array.each { |a| sum+=a }
puts "The sum of following elements #{array} is #{sum}"
@ -11,10 +11,10 @@ def self_add(*array)
end
# Valid inputs
self_add(1)
self_add(2, 5, -4)
self_add(25, 45)
add(1)
add(2, 5, -4)
add(25, 45)
# Invalid inputs
self_add("1", 2, 3)
self_add("a", 1)
add("1", 2, 3)
add("a", 1)