Created
January 2, 2020 21:17
-
-
Save ThomazPom/93b7fd6444fa83ef581da7e76010e97a to your computer and use it in GitHub Desktop.
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
# Multiply elems in a list | |
def m(l,i=0,v=1): | |
return m(l,i+1,v*l[i]) if i+1<len(l) else v*l[i] | |
# >>> m([1,2,3,4,5]) | |
# 120 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment