You are required to design and implement a data structure that efficiently manages a collection of intervals and supports the following operations:
Add Interval: Insert an interval defined by a start and end point into the collection.
Remove Interval: Delete a previously added interval from the collection (assume exact match for removal).
Query Overlap: Given a query interval, return all intervals in the collection that overlap with this query interval. Two intervals overlap if they share at least one common point.
Requirements & Constraints:
Example Scenario:
Suppose the following intervals are added to the collection:
A query for overlapping intervals with the interval [12, 22] should return at least [10, 15] and [20, 25].
Develop a solution that provides a clear API for these operations, and include tests or examples demonstrating the functionality and efficiency of your implementation.
Good luck!