Software Engineer · Senior-Level · Phone Screen
The coding question I got was: ```python class AutoExpireCache: def __init__(self): def set(self, key, value, timestamp, expire_period): def get(self, key): ``` **My approach:** 1. I implemented the basic `set` and `get` APIs using a dictionary. 2. I discussed...