Skip to content

Instantly share code, notes, and snippets.

@bparanj
Created April 9, 2018 05:40
Show Gist options
  • Save bparanj/1cddc38793ceeade548d5d5776edf6c7 to your computer and use it in GitHub Desktop.
Save bparanj/1cddc38793ceeade548d5d5776edf6c7 to your computer and use it in GitHub Desktop.
def sum(array)
sum = 0
if array.size == 1
sum += array[0]
return sum
else
array.shift
sum(array)
end
end
p sum([1,2,3])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment