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

Method main

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

Source from the content-addressed store, hash-verified

32 }
33
34 public static void main(String[] args) {
35 Solution solution = new Solution();
36 System.out.println(solution.levelOrderBottom(TreeNode.createTestData("[]")));
37 System.out.println(solution.levelOrderBottom(TreeNode.createTestData("[1,2,2,3,4,4,3]")));
38 System.out.println(solution.levelOrderBottom(TreeNode.createTestData("[9,-42,-42,null,76,76,null,null,13,null,13]")));
39 }
40}

Callers

nothing calls this directly

Calls 2

levelOrderBottomMethod · 0.95
createTestDataMethod · 0.95

Tested by

no test coverage detected