fix: add comment on sep accumulators on query

This commit is contained in:
2026-02-09 23:33:55 +00:00
parent a5921bdcf9
commit 18175608b7
+1
View File
@@ -64,6 +64,7 @@ class IterSegTree {
result = combine_(result, seg_tree_[--right]);
}
// NOTE: if you separate, MUST combine at the end
return result;
}
};