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

Method main

src/com/blankj/easy/_0100/Solution.java:21–31  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

19 }
20
21 public static void main(String[] args) {
22 Solution solution = new Solution();
23 System.out.println(solution.isSameTree(
24 TreeNode.createTestData("[1,2,2,null,3,null,3]"),
25 TreeNode.createTestData("[1,2,2,null,3,null,3]"))
26 );
27 System.out.println(solution.isSameTree(
28 TreeNode.createTestData("[1,2,2,null,3,null,3]"),
29 TreeNode.createTestData("[1,2,2,null,3,null,null]"))
30 );
31 }
32}

Callers

nothing calls this directly

Calls 2

isSameTreeMethod · 0.95
createTestDataMethod · 0.95

Tested by

no test coverage detected