(String[] args)
| 27 | } |
| 28 | |
| 29 | public static void main(String[] args) { |
| 30 | Solution solution = new Solution(); |
| 31 | TreeNode testData = TreeNode.createTestData("[1,2,2,3,3,3,3,4,4,4,4,4,4,null,null,5,5]"); |
| 32 | TreeNode.print(testData); |
| 33 | System.out.println(solution.isBalanced(testData)); |
| 34 | } |
| 35 | } |
nothing calls this directly
no test coverage detected