Loading interview...
The Eviction Policy
A medium Python mock interview question on DataDriven. Practice with AI-powered feedback, real code execution, and a hire/no-hire decision.
- Domain
- Python
- Difficulty
- medium
- Seniority
- mid
Interview Prompt
Our query result cache needs an LRU eviction policy. Build a class called LRUCache with a fixed capacity. get(key) returns the value or -1 if absent. put(key, value) inserts or updates. When full, evict the least recently used entry. Both get and put count as 'use'.
How This Interview Works
- Read the vague prompt (just like a real interview)
- Ask clarifying questions to the AI interviewer
- Write your python solution with real code execution
- Get instant feedback and a hire/no-hire decision