(String[] args)
| 18 | } |
| 19 | |
| 20 | public static void main(String[] args) { |
| 21 | Solution solution = new Solution(); |
| 22 | System.out.println(solution.maxDepth(TreeNode.createTestData("[]"))); |
| 23 | System.out.println(solution.maxDepth(TreeNode.createTestData("[1,2,2,3,4,4,3]"))); |
| 24 | System.out.println(solution.maxDepth(TreeNode.createTestData("[9,-42,-42,null,76,76,null,null,13,null,13]"))); |
| 25 | } |
| 26 | } |
nothing calls this directly
no test coverage detected