LeetCode: Number of Recent Calls
Problem:
https://leetcode.com/problems/number-of-recent-calls/
Code:
class RecentCounter:
def __init__(self):
self.timestamps = deque()
def ping(self, t: int) -> int:
self.timestamps.append(t)
while self.timestamps[...
is-power-of-two.hashnode.dev2 min read