From fd1f2b36e95c03625297b7b8cba3b1a04a0cc0ed Mon Sep 17 00:00:00 2001 From: mzuenni Date: Tue, 10 Jan 2023 11:40:09 +0100 Subject: change whitespaces --- math/piLehmer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math/piLehmer.cpp') diff --git a/math/piLehmer.cpp b/math/piLehmer.cpp index 37eff6b..4d1780f 100644 --- a/math/piLehmer.cpp +++ b/math/piLehmer.cpp @@ -16,7 +16,7 @@ void init() { memoB[i] = primes[i - 1] * memoB[i - 1]; for(ll j = 1; j <= cacheA; j++) { memoA[j][i] = memoA[j][i - 1] - memoA[j / - primes[i - 1]][i - 1]; + primes[i - 1]][i - 1]; }}} ll phi(ll n, ll k) { -- cgit v1.2.3