같은 message가 10초 안에 다시 Print 되지 않도록 확인하는 함수를 만들면 된다. 파이썬의 해시맵을 사용해 해당 message의 timestamp를 확인하고 갱신해 True/False를 반환한다. class Logger: def __init__(self): self.d = defaultdict(int) def shouldPrintMessage(self, timestamp: int, message: str) -> bool: if message not in self.d: self.d[message] = timestamp return True else: if timestamp - self.d[message] < 10: return False else: self.d[message] = timestam..
난이도는 Easy로 아래와 같다. Design a logger system that receives a stream of messages along with their timestamps. Each unique message should only be printed at most every 10 seconds (i.e. a message printed at timestamp t will prevent other identical messages from being printed until timestamp t + 10). All messages will come in chronological order. Several messages may arrive at the same timestamp. Imple..
- Total
- Today
- Yesterday
- The Economist
- socket programming
- Computer Graphics
- 투 포인터
- java
- The Economist Espresso
- 안드로이드
- 오블완
- 이코노미스트
- 티스토리챌린지
- I2C
- 머신 러닝
- 파이썬
- vertex shader
- machine learning
- 소켓 프로그래밍
- 딕셔너리
- join
- leetcode
- tf-idf
- 리트코드
- min heap
- 이코노미스트 에스프레소
- Android
- C++
- defaultdict
- DICTIONARY
- Hash Map
- ml
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |