Update numtheory.cpp

This commit is contained in:
Anthony Wang 2020-09-15 14:41:14 -05:00
parent 62c0639f0c
commit 38b999de02
Signed by: a
GPG key ID: 6FD3502572299774

View file

@ -8,7 +8,6 @@ inline ll pw(ll base, ll exp) {
}
return res;
}
inline ll inv(ll x) { return pw(x, MOD-2); }
ll fact[MX] = { 1 }, ifact[MX] = { 1 };