Get Going Mini LRU Cache
The core requirement of this data structure:
The cache serves as a key-value store and has some capacity
We can put items to the cache until it reaches the capacity
When capacity is reached, it will evict the "least used" item based on internal or...
wpding.hashnode.dev2 min read