MCPcopy Create free account
hub / github.com/Blankj/awesome-java-leetcode / main

Method main

src/com/blankj/easy/_0104/Solution.java:20–25  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

maxDepthMethod · 0.95
createTestDataMethod · 0.95

Tested by

no test coverage detected