Complete the square sum function so that it squares each number passed into it and then sums the results together.
For example, for [1, 2, 2]
it should
return 9
because 12+22+22=9.
def square_sum(numbers)
numbers.sum{ |num| num**2 }
end
def squareSum(numbers)
numbers.map {|n| n*n}.reduce(:+)
end