MySherry
Results
1
comments of
MySherry
交个作业 ```javascript function LRU(max, timeout) { const map = new Map(); const isTimeout = key => { const value = map.get(key); if (!value) return true; return Date.now() - value.time >...