diff options
Diffstat (limited to 'string/rollingHash.cpp')
| -rw-r--r-- | string/rollingHash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/rollingHash.cpp b/string/rollingHash.cpp index ad9e7cd..cd88951 100644 --- a/string/rollingHash.cpp +++ b/string/rollingHash.cpp @@ -13,4 +13,4 @@ struct Hasher { ll hash(int l, int r) { // Berechnet hash(s[l..r)). return (pref[r] - power[r-l] * pref[l] % M + M) % M; } -};
\ No newline at end of file +}; |
