(int data)
| 4 | Node left, right; |
| 5 | |
| 6 | public Node(int data) { |
| 7 | this.data = data; |
| 8 | this.left = null; |
| 9 | this.right = null; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | public static int convertToSumTree(Node root) { |
nothing calls this directly
no outgoing calls
no test coverage detected