summaryrefslogtreecommitdiff
path: root/string/rollingHashCf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'string/rollingHashCf.cpp')
-rw-r--r--string/rollingHashCf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/rollingHashCf.cpp b/string/rollingHashCf.cpp
index da534a1..d1b8893 100644
--- a/string/rollingHashCf.cpp
+++ b/string/rollingHashCf.cpp
@@ -14,4 +14,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
+};