(String[] args)
| 43 | } |
| 44 | |
| 45 | public static void main(String[] args) { |
| 46 | Solution solution = new Solution(); |
| 47 | TreeNode testData = TreeNode.createTestData("[1,2,2,3,3,3,3,4,4,4,4,4,4,null,null,5,5]"); |
| 48 | TreeNode.print(testData); |
| 49 | System.out.println(solution.minDepth(testData)); |
| 50 | } |
| 51 | } |
nothing calls this directly
no test coverage detected