From 124913ad9ccaed0f1400a49dfe17cc3f438347a7 Mon Sep 17 00:00:00 2001 From: qq_44193969 Date: Wed, 17 Nov 2021 23:11:53 +0800 Subject: [PATCH] update solution.md --- .../solution.md" | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" index 731042ff6..eb9a03fa0 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" @@ -6,29 +6,24 @@

例如,二叉树 [1,2,2,3,4,4,3] 是对称的。

-
    1
-
+
+    1
    / \
-
   2   2
-
  / \ / \
- 
 3  4 4  3
+
 

 

但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:

-
    1
-
+
+    1
    / \
-
   2   2
-
    \   \
-
    3    3
 
-- GitLab