Spring Hire Sale
Limited Time Deal: Unlock all premium questions for over 30% off
$10.42$7.08
08
:
06
:
23
:
18
Back to Dashboard
Interval Coverage Counter
Hard
Given a list of closed intervals on the integer number line, build a data structure that efficiently answers point-coverage queries. A closed interval [l, r] covers a point x when l <= x <= r.
Implement the IntervalCounter class:
...