Skip to content

Instantly share code, notes, and snippets.

@YashKarthik
Created September 1, 2021 11:27
Show Gist options
  • Save YashKarthik/41757aece10605c0d8d75db05892b5d8 to your computer and use it in GitHub Desktop.
Save YashKarthik/41757aece10605c0d8d75db05892b5d8 to your computer and use it in GitHub Desktop.
Recursive summing of elements of list. Just for fun (ik sum(list) exists).
def mysum(lst, s):
while len(lst) > 0:
s += lst[0]
lst.pop(0)
s = mysum(lst, s)
return s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment