Created
September 1, 2021 11:27
-
-
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).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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