Leetcode 0359. Logger Rate Limiter
Posted on Sun 26 January 2025 in Leetcode Premium • Tagged with hash-map
Question Link : https://leetcode.com/problems/logger-rate-limiter/
Difficulty: Easy
Premium: True
Question
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 …
Continue reading