liuyu
Results
1
comments of
liuyu
trafficstars
> ``` > function LRU(max) { > this.max = max; > this.cache = new Map(); > } > > LRU.prototype = { > get(key) { > const { cache }...