diff --git a/solution/0200-0299/0235.Lowest Common Ancestor of a Binary Search Tree/README.md b/solution/0200-0299/0235.Lowest Common Ancestor of a Binary Search Tree/README.md index 5e7c4d6118f3b..c74277eb45088 100644 --- a/solution/0200-0299/0235.Lowest Common Ancestor of a Binary Search Tree/README.md +++ b/solution/0200-0299/0235.Lowest Common Ancestor of a Binary Search Tree/README.md @@ -20,14 +20,14 @@
输入: root = [6,2,8,0,4,7,9,null,null,3,5], p = 2, q = 8 输出: 6 -解释: 节点2
和节点8
的最近公共祖先是6。
+解释: 节点 2 和节点 8 的最近公共祖先是 6。
示例 2:
输入: root = [6,2,8,0,4,7,9,null,null,3,5], p = 2, q = 4 输出: 2 -解释: 节点+解释: 节点 2 和节点 4 的最近公共祖先是 2, 因为根据定义最近公共祖先节点可以为节点本身。2
和节点4
的最近公共祖先是2
, 因为根据定义最近公共祖先节点可以为节点本身。
diff --git a/solution/0200-0299/0236.Lowest Common Ancestor of a Binary Tree/README.md b/solution/0200-0299/0236.Lowest Common Ancestor of a Binary Tree/README.md index 9fcebe16b53fb..e327309d65fb8 100644 --- a/solution/0200-0299/0236.Lowest Common Ancestor of a Binary Tree/README.md +++ b/solution/0200-0299/0236.Lowest Common Ancestor of a Binary Tree/README.md @@ -17,7 +17,7 @@
输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 1 输出:3 -解释:节点5
和节点1
的最近公共祖先是节点3 。
+解释:节点 5 和节点 1 的最近公共祖先是节点 3 。
示例 2:
@@ -25,7 +25,7 @@输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 4 输出:5 -解释:节点5
和节点4
的最近公共祖先是节点5 。
因为根据定义最近公共祖先节点可以为节点本身。 +解释:节点 5 和节点 4 的最近公共祖先是节点 5 。因为根据定义最近公共祖先节点可以为节点本身。
示例 3:
diff --git a/solution/0200-0299/0238.Product of Array Except Self/README.md b/solution/0200-0299/0238.Product of Array Except Self/README.md index 0d6d19f23387b..cbd2437d7e557 100644 --- a/solution/0200-0299/0238.Product of Array Except Self/README.md +++ b/solution/0200-0299/0238.Product of Array Except Self/README.md @@ -17,8 +17,8 @@示例 1:
-输入: nums =[1,2,3,4]
-输出:[24,12,8,6]
+输入: nums = [1,2,3,4] +输出: [24,12,8,6]
示例 2:
diff --git a/solution/config.py b/solution/config.py index 266db05070cf9..72f4a6d18b247 100644 --- a/solution/config.py +++ b/solution/config.py @@ -9,6 +9,9 @@ 40, 115, 128, + 235, + 236, + 238, 258, 259, 261,