Software Engineer · Mid-Level · Phone Screen
The coding question I got was to implement a Counter class with expiration: ```python class Counter: def __init__(self, window): self.window = window self.data = {} def put(self, element): current_time = time.time() if element in self.data: self.data[element]....