diff --git "a/problems/\344\272\214\345\217\211\346\240\221\344\270\255\351\200\222\345\275\222\345\270\246\347\235\200\345\233\236\346\272\257.md" "b/problems/\344\272\214\345\217\211\346\240\221\344\270\255\351\200\222\345\275\222\345\270\246\347\235\200\345\233\236\346\272\257.md" index 8014d6e11c..372dc40c9a 100644 --- "a/problems/\344\272\214\345\217\211\346\240\221\344\270\255\351\200\222\345\275\222\345\270\246\347\235\200\345\233\236\346\272\257.md" +++ "b/problems/\344\272\214\345\217\211\346\240\221\344\270\255\351\200\222\345\275\222\345\270\246\347\235\200\345\233\236\346\272\257.md" @@ -336,6 +336,7 @@ class Solution: ``` Go: + 100.相同的树 ```go /** @@ -351,7 +352,6 @@ func isSameTree(p *TreeNode, q *TreeNode) bool { case p == nil && q == nil: return true case p == nil || q == nil: - fmt.Println(p,q) fallthrough case p.Val != q.Val: return false