All Problems

LRU Cache

Mediumdata-structureExpected: O(1) time, O(n) spaceInterview Context
hash-maplinked-list

Problem

Design a Least Recently Used cache supporting get and put operations in O(1) time.

Loading...