diff options
author | Anthony Wang | 2020-09-15 14:41:14 -0500 |
---|---|---|
committer | Anthony Wang | 2020-09-15 14:41:14 -0500 |
commit | 38b999de0298946fecd9f8e1539f99c22190d052 (patch) | |
tree | 2bba13a4e2d81a38b47c50c7579e9aeb0c476cca | |
parent | 62c0639f0c1319f0d1758be6942a48f66a829256 (diff) |
Update numtheory.cpp
-rw-r--r-- | Math/numtheory.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Math/numtheory.cpp b/Math/numtheory.cpp index a019b05..b211282 100644 --- a/Math/numtheory.cpp +++ b/Math/numtheory.cpp @@ -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 }; |