| 82 | |
| 83 | """ |
| 84 | class ListNode(object): |
| 85 | __slots__ = ('val', 'next') |
| 86 | def __init__(self, x): |
| 87 | self.val = x |
| 88 | self.next = None |
| 89 | |
| 90 | class Solution(object): |
| 91 | def getIntersectionNode(self, headA, headB): |
no outgoing calls
no test coverage detected