Design and implement a Log Aggregator system that supports two primary operations:
LogAggregator
.add(timestamp, message)
which records a log message at the given timestamp. Here, timestamp
is a non-negative integer representing seconds since a fixed starting point (e.g., epoch).query(start, end)
that returns a list (or an array) of all messages whose timestamps are within the inclusive range [start, end]
. The returned messages must be sorted in ascending order by their timestamps.query
operation for efficient performance under such conditions.For example, after the following operations:
log_agg.add(100, "System started")
log_agg.add(150, "User logged in")
log_agg.add(200, "Error occurred")
A call to log_agg.query(100, 150)
should return the messages:
["System started", "User logged in"]
Implement the LogAggregator
class in your preferred programming language. Focus on code correctness and efficiency. Do not provide additional explanations or hints; simply produce a solution that meets the above requirements.