ServiceNow interview question

LRU Cache (LeetCode #146) Describe how to implement a LRU Cache.

Interview Answer

Anonymous

21 Apr 2024

Use an ordered hashmap (OrderedDict in Python, Map in JavaScript). Alternatively, use a hashmap and a doubly-linked list.