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

Method main

src/com/blankj/easy/_0111/Solution.java:45–50  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 3

createTestDataMethod · 0.95
printMethod · 0.95
minDepthMethod · 0.95

Tested by

no test coverage detected