Engaged employer
Write code to implement a LRU cache with eviction
Anonymous
use combination of doubly link list(for adding(at head O(1)) and deleting node(from rearO(1))) with unordered_map (for node in O(1) time)
Check out your Company Bowl for anonymous work chats.