-
Notifications
You must be signed in to change notification settings - Fork 13
/
359.日志速率限制器.py
58 lines (53 loc) · 2.05 KB
/
359.日志速率限制器.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 请你设计一个日志系统,可以流式接收日志以及它的时间戳。
#
# 该日志会被打印出来,需要满足一个条件:当且仅当日志内容 在过去的 10 秒钟内没有被打印过。
#
# 给你一条日志的内容和它的时间戳(粒度为秒级),如果这条日志在给定的时间戳应该被打印出来,则返回 true,否则请返回 false。
#
# 要注意的是,可能会有多条日志在同一时间被系统接收。
#
# 示例:
#
# Logger logger = new Logger();
#
# // 日志内容 "foo" 在时刻 1 到达系统
# logger.shouldPrintMessage(1, "foo"); returns true;
#
# // 日志内容 "bar" 在时刻 2 到达系统
# logger.shouldPrintMessage(2,"bar"); returns true;
#
# // 日志内容 "foo" 在时刻 3 到达系统
# logger.shouldPrintMessage(3,"foo"); returns false;
#
# // 日志内容 "bar" 在时刻 8 到达系统
# logger.shouldPrintMessage(8,"bar"); returns false;
#
# // 日志内容 "foo" 在时刻 10 到达系统
# logger.shouldPrintMessage(10,"foo"); returns false;
#
# // 日志内容 "foo" 在时刻 11 到达系统
# logger.shouldPrintMessage(11,"foo"); returns true;
class Logger:
def __init__(self):
"""
Initialize your data structure here.
"""
self.lookup = {}
def shouldPrintMessage(self, timestamp: int, message: str) -> bool:
"""
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.
"""
if message not in self.lookup:
self.lookup[message] = timestamp
return True
else:
if timestamp - self.lookup[message] >= 10:
self.lookup[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)