Amazon interview question

Design an LRU cache.

Interview Answer

Anonymous

3 Dec 2019

This was a very typical Leet Code question and the solution was using a linked list and a hash map.