(String[] args)
| 70 | } |
| 71 | |
| 72 | public static void main(String[] args) { |
| 73 | BiNode root = createTree(); |
| 74 | printAsTree(root, ""); |
| 75 | NodePair n = convert(root); |
| 76 | printLinkedListTree(n.head); |
| 77 | } |
| 78 | |
| 79 | } |
nothing calls this directly
no test coverage detected