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

Method main

src/com/blankj/easy/_0110/Solution.java:29–34  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 3

createTestDataMethod · 0.95
printMethod · 0.95
isBalancedMethod · 0.95

Tested by

no test coverage detected