Skip to content

Instantly share code, notes, and snippets.

@votiethuy
votiethuy / python
Created January 21, 2021 04:56
lrucache
class Node:
def __init__(self, key=0, value=0):
self.key = key
self.value = value
self.prev = None
self.next = None
class LRUCache:
def __init__(self, capacity):