(String[] args)
| 72 | } |
| 73 | |
| 74 | public static void main(String[] args) { |
| 75 | BiNode root = createTree(); |
| 76 | printAsTree(root, ""); |
| 77 | BiNode n = convert(root); |
| 78 | printLinkedListTree(n); |
| 79 | System.out.println(count); |
| 80 | } |
| 81 | |
| 82 | } |
nothing calls this directly
no test coverage detected