(String[] args)
| 71 | } |
| 72 | |
| 73 | public static void main(String[] args) { |
| 74 | Solution solution = new Solution(); |
| 75 | TreeNode.print(solution.recoverFromPreorder("1-2--3--4-5--6--7")); |
| 76 | System.out.println("=============================================="); |
| 77 | TreeNode.print(solution.recoverFromPreorder("1-2--3---4-5--6---7")); |
| 78 | } |
| 79 | } |
nothing calls this directly
no test coverage detected