| 5 | } |
| 6 | |
| 7 | type TreeNode struct { |
| 8 | Val int |
| 9 | Left *TreeNode |
| 10 | Right *TreeNode |
| 11 | } |
| 12 | |
| 13 | func isSymmetric(root *TreeNode) bool { |
| 14 | return areSymmetricNodes(root.Left, root.Right) |
nothing calls this directly
no outgoing calls
no test coverage detected