(self, x)
| 15 | # Definition for a binary tree node. |
| 16 | class TreeNode(object): |
| 17 | def __init__(self, x): |
| 18 | self.val = x |
| 19 | self.left = None |
| 20 | self.right = None |
| 21 | |
| 22 | class Solution(object): |
| 23 | def hasPathSum(self, root, sum): |
nothing calls this directly
no outgoing calls
no test coverage detected