Amazon Interview Question

Design an LRU cache.

Interview Answer

Anonymous

Dec 3, 2019

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