2dbi
Home/Salesforce/LRU Cache
SSalesforce·DSASMTSOnsite – Coding 1

LRU Cache

Problem

Implement an O(1) LRU cache. Reported in Salesforce live rounds.

Example

capacity 2: put(1,1),put(2,2),get(1)->1,put(3,3) evicts 2

Constraints

  • Up to 2 × 10^5 calls

Hint

Hash map + doubly linked list.

added 6 days ago
LeadersAccount