(self, x)
| 21 | # Definition for a binary tree node. |
| 22 | class TreeNode(object): |
| 23 | def __init__(self, x): |
| 24 | self.val = x |
| 25 | self.left = None |
| 26 | self.right = None |
| 27 | |
| 28 | class Solution(object): |
| 29 | def pathSum(self, root, sum): |
nothing calls this directly
no outgoing calls
no test coverage detected