| 66 | |
| 67 | # Basic node in hash map |
| 68 | class 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: |
no outgoing calls
no test coverage detected