I wrote this piece of code to compute the number of combinations:
def fact(n): return 1 if(n == 1) else n * fact(n - 1) def combinations(n,k): retur
sys.setrecursionlimit(some_number)