(self, x)
| 12 | # Definition for singly-linked list. |
| 13 | class ListNode(object): |
| 14 | def __init__(self, x): |
| 15 | self.val = x |
| 16 | self.next = None |
| 17 | |
| 18 | class Solution(object): |
| 19 | def reorderList(self, head): |
nothing calls this directly
no outgoing calls
no test coverage detected