AjaxSir
Results
3
comments of
AjaxSir
```javascript class LRUCache { constructor(max) { this.map = new Map() this.max = max; } get (k) { if (this.map.has(k)) { var v = this.map.get(k) this.map.delete(k) this.map.set(k, v) return this.map.get(k) }...
I also hope that
> 嗯...开测试环境看来好麻烦。如果使用真实环境,会有什么影响呢? 我用的真实环境试了一下,自己玩儿应该没啥大问题吧😄