Search Results

0
votes

Code Golf: Factorials

def f(n): return reduce(lambda x,y: x*y,range(1,n+1)) …