Y
Hacker News
new
|
ask
|
show
|
jobs
by
d0mine
5700 days ago
from math import factorial
Or
fact = lambda n: reduce(operator.mul, xrange(1, n+1), 1)