From 58be3612823936f85258241528d2973adf213011 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Fri, 14 Nov 2025 14:41:29 +0100 Subject: rename calc_binom() to binom() --- content/math/binomial1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/math/binomial1.cpp') diff --git a/content/math/binomial1.cpp b/content/math/binomial1.cpp index d0fce18..34f13ed 100644 --- a/content/math/binomial1.cpp +++ b/content/math/binomial1.cpp @@ -1,4 +1,4 @@ -ll calc_binom(ll n, ll k) { +ll binom(ll n, ll k) { if (k > n) return 0; ll r = 1; for (ll d = 1; d <= k; d++) { // Reihenfolge => Teilbarkeit -- cgit v1.2.3