from math import factorial as f def c(n, k): return f(n) / f(k) / f(n - k) def h(n, k): return c(n - 1 + k, k)
0 件のコメント:
コメントを投稿