From 7e8ef29787467bba5f7e9378093f8e630bc75dfb Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Thu, 3 Aug 2023 22:32:36 +0800 Subject: [PATCH 1/3] chore: update lc problem: No.2788 --- solution/2700-2799/2788.Split Strings by Separator/README.md | 2 +- solution/2700-2799/2788.Split Strings by Separator/README_EN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..9d9781d17b970 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"]
 解释:在本示例中,我们进行下述拆分:
 
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..687eb9c2e3233 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: 
 

From b9317f77956f3a7504ff7678ef7087e1f1c3dad9 Mon Sep 17 00:00:00 2001
From: thinkasany <480968828@qq.com>
Date: Thu, 3 Aug 2023 22:36:33 +0800
Subject: [PATCH 2/3] chore: update lc problem: No.2788

---
 solution/2700-2799/2788.Split Strings by Separator/README.md    | 2 +-
 solution/2700-2799/2788.Split Strings by Separator/README_EN.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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 9d9781d17b970..6ab3953825731 100644
--- a/solution/2700-2799/2788.Split Strings by Separator/README.md	
+++ b/solution/2700-2799/2788.Split Strings by Separator/README.md	
@@ -60,7 +60,7 @@
 
 
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 687eb9c2e3233..422dd527305d1 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	
@@ -57,7 +57,7 @@ Hence, the resulting array is ["easy","problem"].
 	
  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 20
  • characters in words[i] are either lowercase English letters or characters from the string ".,|$#@" (excluding the quotes)
  • -
  • separator is a character from the string ".,|$#@" (excluding the quotes)
  • +
  • separator is a character from the string ".,|$#@" (excluding the quotes)
  • ## Solutions From 3b87d0da23e911d35f19d845cba02de15a040ec4 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Thu, 3 Aug 2023 22:41:21 +0800 Subject: [PATCH 3/3] chore: update lc problem: No.2788 --- solution/2700-2799/2788.Split Strings by Separator/README.md | 2 +- solution/2700-2799/2788.Split Strings by Separator/README_EN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 6ab3953825731..2f3d2903b361c 100644 --- a/solution/2700-2799/2788.Split Strings by Separator/README.md +++ b/solution/2700-2799/2788.Split Strings by Separator/README.md @@ -61,7 +61,7 @@
  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 20
  • words[i] 中的字符要么是小写英文字母,要么就是字符串 ".,|$#@" 中的字符(不包括引号)
  • -
  • separator 是字符串 ".,|$#@" 中的某个字符(不包括引号)
  • +
  • separator 是字符串 ".,|$#@" 中的某个字符(不包括引号)
  • ## 解法 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 422dd527305d1..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 @@ -56,7 +56,7 @@ Hence, the resulting array is ["easy","problem"].