diff --git a/solution/2700-2799/2788.Split Strings by Separator/README.md b/solution/2700-2799/2788.Split Strings by Separator/README.md index 08fbcc85d98c8..2f3d2903b361c 100644 --- a/solution/2700-2799/2788.Split Strings by Separator/README.md +++ b/solution/2700-2799/2788.Split Strings by Separator/README.md @@ -36,7 +36,7 @@

示例 2:

-输入:words = ["easy","problem"], separator = "$"
+输入:words = ["$easy$","$problem$"], separator = "$"
 输出:["easy","problem"]
 解释:在本示例中,我们进行下述拆分:
 
@@ -60,8 +60,8 @@
 
 
 ## 解法
diff --git a/solution/2700-2799/2788.Split Strings by Separator/README_EN.md b/solution/2700-2799/2788.Split Strings by Separator/README_EN.md
index b3bcc08e4fb29..ba997b099c19e 100644
--- a/solution/2700-2799/2788.Split Strings by Separator/README_EN.md	
+++ b/solution/2700-2799/2788.Split Strings by Separator/README_EN.md	
@@ -33,7 +33,7 @@ Hence, the resulting array is ["one","two","three"
 

Example 2:

-Input: words = ["$easy$","$problem$"], separator = "$"
+Input: words = ["$easy$","$problem$"], separator = "$"
 Output: ["easy","problem"]
 Explanation: In this example we split as follows: 
 
@@ -56,8 +56,8 @@ Hence, the resulting array is ["easy","problem"].
 
 
 ## Solutions