MCPcopy Create free account
hub / github.com/HuberTRoy/leetCode / __init__

Method __init__

Array/IntersectionOfTwoLinkedLists.py:86–88  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

84class ListNode(object):
85 __slots__ = ('val', 'next')
86 def __init__(self, x):
87 self.val = x
88 self.next = None
89
90class Solution(object):
91 def getIntersectionNode(self, headA, headB):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected