From 98aa28427350e72cb9abe4071c0c6b6870b7e6cc Mon Sep 17 00:00:00 2001 From: Yidi Date: Mon, 25 Mar 2024 13:31:01 +0100 Subject: fix indent --- math/chineseRemainder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/chineseRemainder.cpp b/math/chineseRemainder.cpp index b02de48..ccbc5dc 100644 --- a/math/chineseRemainder.cpp +++ b/math/chineseRemainder.cpp @@ -5,7 +5,7 @@ struct CRT { // Adds congruence x = a (mod m) void add(ll a, ll m) { - auto [d, s, t] = extendedEuclid(M, m); + auto [d, s, t] = extendedEuclid(M, m); if((a - sol) % d != 0) hasSol = false; lll z = M/d * s; M *= m/d; -- cgit v1.2.3