Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codedecks-in/LeetCode-Solutions
/ ListNode
Class
ListNode
Python/LRUCache.py:1–6 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
ListNode(object):
2
def
__init__(self,key,val):
3
self.key = key
4
self.value = val
5
self.next = None
6
self.prev = None
7
8
class
LRUCache:
9
Callers
2
__init__
Method · 0.70
put
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected