359 Logger Rate Limiter
Design a logger system that receive stream of messages along with its timestamps, each message should be printed if and only if it is not printed in the last 10 seconds.
Given a message and a timestamp (in seconds granularity), return true if the message should be printed in the given timestamp, otherwise returns false.
It is possible that several messages arrive roughly at the same time.
Example:
The Idea: Initialize a dictionary. If a message not contained with the dictionary, the message must always be accepted and stored into the dictionary. Otherwise, if the message exists, then it should only be logged if and only if the difference between the previous message time stamp and the current time stamp is greater than or equal to zero. Update the table again. Otherwise, return false.
Complexity: O(n) average time where n is the number of logs. O(m) space where m is the unique number of log messages.
Last updated