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

Method main

src/com/blankj/easy/_0101/Solution.java:47–52  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

45 }
46
47 public static void main(String[] args) {
48 Solution solution = new Solution();
49 System.out.println(solution.isSymmetric(TreeNode.createTestData("[1,2,2,3,4,4,3]")));
50 System.out.println(solution.isSymmetric(TreeNode.createTestData("[1,2,2,null,3,null,3]")));
51 System.out.println(solution.isSymmetric(TreeNode.createTestData("[9,-42,-42,null,76,76,null,null,13,null,13]")));
52 }
53}

Callers

nothing calls this directly

Calls 2

isSymmetricMethod · 0.95
createTestDataMethod · 0.95

Tested by

no test coverage detected