Skip to content

Simple implementation of an LRU cache for a code interview.

Notifications You must be signed in to change notification settings

darioush/lrucache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple implementation of an LRU cache for a code interview.

Uses a linked list as a queue to keep track of accesses, and a Python dictionary to store values.

To run tests install pytest and:

py.test lrucache/

About

Simple implementation of an LRU cache for a code interview.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages