-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogger.py
31 lines (26 loc) · 906 Bytes
/
logger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class Logger(object):
def __init__(self):
"""
Initialize your data structure here.
"""
self.d = {}
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 not in self.d:
self.d[message] = timestamp
return True
if timestamp - self.d[message] >= 10:
self.d[message] = timestamp
return True
else:
return False
# Your Logger object will be instantiated and called as such:
# obj = Logger()
# param_1 = obj.shouldPrintMessage(timestamp,message)