LoveinSun / blog-comment

blog-comment
0 stars 0 forks source link

python LRUCache | JugglerDancing #10

Open LoveinSun opened 2 years ago

LoveinSun commented 2 years ago

https://juggler.fun/uncategorized/python-LRUCache/

1234567891011121314151617181920212223242526272829303132333435363738394041class LRUCache(collections.OrderedDict): def init(self, size=2): #print(self.size) self.size = size,

LoveinSun commented 2 years ago

init