Domanda di colloquio di ServiceNow

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

Risposta di colloquio

Anonimo

21 apr 2024

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