MCPcopy 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

1class 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
8class LRUCache:
9

Callers 2

__init__Method · 0.70
putMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected