Software Engineer · Senior-Level · Phone Screen
I had a technical phone screen that covered two main topics. **Coding:** I was asked to implement an in-memory database with `set` and `get` methods. The `get` method required a `sort_by` parameter. I needed to pay attention to edge cases. ``` class DB: def se...