Skip to content

Commit 84c70dc

Browse files
committed
format
1 parent 3afb8b7 commit 84c70dc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

library/data_structures_[l,r)/lazy_seg_tree.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ struct seg_tree {
3636
update(l, r, change, tm, tr, 2 * v + 1);
3737
tree[v] = op(tree[2 * v], tree[2 * v + 1]);
3838
}
39-
ll query(int l, int r) {
40-
return query(l, r, 0, n, 1);
41-
}
39+
ll query(int l, int r) { return query(l, r, 0, n, 1); }
4240
ll query(int l, int r, int tl, int tr, int v) {
4341
if (r <= tl || tr <= l) return 0;
4442
if (l <= tl && tr <= r) return tree[v];

0 commit comments

Comments
 (0)