summaryrefslogtreecommitdiff
path: root/content/math/binomial2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'content/math/binomial2.cpp')
-rw-r--r--content/math/binomial2.cpp2
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);