Skip to content

Commit c5291a1

Browse files
authored
chore: update lc problem: No.2800 (#1370)
1 parent 922c34c commit c5291a1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

solution/2800-2899/2800.Shortest String That Contains Three Strings/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323

2424
<p><strong>示例 1:</strong></p>
2525

26-
<pre><code><span style=""><b>输入:</b></span>a</code> = "abc", <code>b</code> = "bca", <code>c</code> = "aaa"
26+
<pre><span style=""><b>输入:</b></span>a = "abc", b = "bca", c = "aaa"
2727
<b>输出:</b>"aaabca"
2828
<b>解释:</b>字符串 "aaabca" 包含所有三个字符串:a = ans[2...4] ,b = ans[3..5] ,c = ans[0..2] 。结果字符串的长度至少为 6 ,且"aaabca" 是字典序最小的一个。</pre>
2929

3030
<p><strong>示例 2:</strong></p>
3131

32-
<pre><code><span style=""><b>输入:</b></span>a</code> = "ab", <code>b</code> = "ba", <code>c</code> = "aba"
32+
<pre><span style=""><b>输入:</b></span>a = "ab", b = "ba", c = "aba"
3333
<b>输出:</b>"aba"
3434
<strong>解释:</strong>字符串 "aba" 包含所有三个字符串:a = ans[0..1] ,b = ans[1..2] ,c = ans[0..2] 。由于 c 的长度为 3 ,结果字符串的长度至少为 3 。"aba" 是字典序最小的一个。
3535
</pre>

solution/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,5 @@
7474
2606,
7575
2643,
7676
2682,
77+
2800
7778
]

0 commit comments

Comments
 (0)