Skip to content

Commit fb67aa7

Browse files
committed
fix
1 parent 32d7f7b commit fb67aa7

File tree

1 file changed

+1
-1
lines changed
  • library/data_structures_[l,r]/seg_tree_uncommon

1 file changed

+1
-1
lines changed

library/data_structures_[l,r]/seg_tree_uncommon/walk.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
T walk(int l, int r, const auto& f) {
1+
int walk(int l, int r, const auto& f) {
22
for (l += n, r += n; l <= r;)
33
if (int u = nxt(l, r); f(s[u])) {
44
while (u < n)

0 commit comments

Comments
 (0)