Logger Rate Limiter
用哈希表更新timestamp就行了
class Logger(object):
def __init__(self):
"""
Initialize your data structure here.
"""
self.store = {}
def shouldPrintMessage(self, timestamp, message):
"""
Returns true if the message should be printed in the given timestamp, otherwise returns false.
If this method returns false, the message will not be printed.
The timestamp is in seconds granularity.
:type timestamp: int
:type message: str
:rtype: bool
"""
if message in self.store and timestamp - self.store[message] >= 10:
self.store[message] = timestamp
return True
if message not in self.store:
self.store[message] = timestamp
return True
return False
# Your Logger object will be instantiated and called as such:
# obj = Logger()
# param_1 = obj.shouldPrintMessage(timestamp,message)