1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 08:21:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

移除零宽空格

This commit is contained in:
2025-05-25 15:06:02 +08:00
parent 59597532bc
commit 3070bed723
272 changed files with 1031 additions and 749 deletions

View File

@@ -21,7 +21,7 @@
(&quot;a<u>b</u>a&quot;, &quot;bab<u>a</u>&quot;)
The underlined portions are the substrings that are chosen from s and t.
</pre>
<strong class="example">Example 2:</strong>
<strong class="example">Example 2:</strong>
<pre>
<strong>Input:</strong> s = &quot;ab&quot;, t = &quot;bb&quot;
@@ -30,7 +30,7 @@ The underlined portions are the substrings that are chosen from s and t.
(&quot;<u>a</u>b&quot;, &quot;<u>b</u>b&quot;)
(&quot;<u>a</u>b&quot;, &quot;b<u>b</u>&quot;)
(&quot;<u>ab</u>&quot;, &quot;<u>bb</u>&quot;)
The underlined portions are the substrings that are chosen from s and t.
The underlined portions are the substrings that are chosen from s and t.
</pre>
<p>&nbsp;</p>