Whiteboard coding exercise: - create a key, value LRUCache with set/get methods - make the internal search (for update) faster
Sigiloso
Used HashMap and LinkedList of wrapped KeyValue pairs. Can compare references in the linked list (still O(n)) if the KeyValue wrappers are also stored in the HashMap.