Example #1
0
from numtools import fact

# I didn't come up with this.

fact(2 * 20) / (fact(20) ** 2)
Example #2
0
def c(n, r):
   return fact(n) / (fact(r) * fact(n - r))