From 00b01a954304e50904de97b25639c535e16f259e Mon Sep 17 00:00:00 2001 From: mzuenni Date: Sun, 25 Aug 2024 19:43:11 +0200 Subject: no spaces --- content/math/shortModInv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/math/shortModInv.cpp') diff --git a/content/math/shortModInv.cpp b/content/math/shortModInv.cpp index f696cce..cf91ca0 100644 --- a/content/math/shortModInv.cpp +++ b/content/math/shortModInv.cpp @@ -1,3 +1,3 @@ ll multInv(ll x, ll m) { // x^{-1} mod m - return 1 < x ? m - multInv(m % x, x) * m / x : 1; + return 1 < x ? m - multInv(m % x, x) * m / x : 1; } -- cgit v1.2.3