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 @@
1 <= words.length <= 100
1 <= words[i].length <= 20
words[i]
中的字符要么是小写英文字母,要么就是字符串 ".,|$#@"
中的字符(不包括引号)separator
是字符串 ".,|$#@"
中的某个字符(不包括引号)words[i]
中的字符要么是小写英文字母,要么就是字符串 ".,|$#@"
中的字符(不包括引号)separator
是字符串 ".,|$#@"
中的某个字符(不包括引号)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"].
1 <= words.length <= 100
1 <= words[i].length <= 20
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)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)