diff options
Diffstat (limited to 'content/math/binomial2.cpp')
| -rw-r--r-- | content/math/binomial2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/math/binomial2.cpp b/content/math/binomial2.cpp index 4531505..bb6a035 100644 --- a/content/math/binomial2.cpp +++ b/content/math/binomial2.cpp @@ -20,7 +20,7 @@ ll binomPPow(ll n, ll k, ll p) { return res; } -ll calc_binom(ll n, ll k) { +ll binom(ll n, ll k) { if (k > n) return 0; ll res = 1; k = min(k, n - k); |
