(String[] args)
| 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 | } |
nothing calls this directly
no test coverage detected