Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/neetcode-gh/leetcode
/ ListNode
Class
ListNode
python/0706-design-hashmap.py:1–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
ListNode:
2
def
__init__(self, key=-1, val=-1, next=None):
3
self.key = key
4
self.val = val
5
self.next = next
6
7
class
MyHashMap:
8
def
__init__(self):
Callers
13
removeElements
Method · 0.70
partition
Method · 0.70
mergeList
Method · 0.70
mergeTwoLists
Method · 0.70
merge_two_sorted
Method · 0.70
swapPairs
Method · 0.70
addTwoNumbers
Method · 0.70
__init__
Method · 0.70
put
Method · 0.70
removeNthFromEnd
Method · 0.70
reverseBetween
Method · 0.70
insertionSortList
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected