Hacker News new | ask | show | jobs
by BoiledCabbage 481 days ago
Yes, but how do you update your max when you drop old values. That's the issue with max forming a monoid and not a group.

The whole point of the post is that this is easy to implement for sum, but is difficult for max. Posting how someone solves the problem for sum isn't really addressing anything new here.

1 comments

If the value you dropped wasn't the max, no problem, if it was, you recompute over the window. It is amortized.