Skip to content

Instantly share code, notes, and snippets.

View Xxxdxs's full-sized avatar
🎯
Focusing

Baiwei Xxxdxs

🎯
Focusing
View GitHub Profile
@proudlygeek
proudlygeek / lru.js
Created February 3, 2015 00:59
LRU Cache Implementation
/**
* LRU Cache
*
* http://www.codewars.com/kata/53b406e67040e51e17000c0a
*
*/
function LRUCache(capacity, init) {
var data = init || {};
var timestamps = {};
var capacity = capacity;