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