MCPcopy Index your code
hub / github.com/qiyuangong/leetcode / ListNode

Class ListNode

python/706_Design_HashMap.py:68–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66
67# Basic node in hash map
68class ListNode():
69
70 def __init__(self, key, val):
71 self.key = key
72 self.val = val
73 self.next = None
74
75
76# Your MyHashMap object will be instantiated and called as such:

Callers 8

plusOneMethod · 0.70
insertionSortListMethod · 0.70
removeElementsMethod · 0.70
mergeTwolistsMethod · 0.70
reverseKGroupMethod · 0.70
mergeTwoListsMethod · 0.70
swapPairsMethod · 0.70
putMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected