/LRUCache

Primary LanguagePython

LRUCache

Requirements
Python 2.7.11

To Test Run

python lurcache.py

To implement

if lrucache.py is in the same directory as your script

from lrucache import LRUCache
cache = LRUCache(2)
...