mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
<p>给你一个字符串 <code>s</code> 。</p>
|
||
|
||
<p>请你进行以下操作直到 <code>s</code> 为 <strong>空</strong> :</p>
|
||
|
||
<ul>
|
||
<li>每次操作 <strong>依次</strong> 遍历 <code>'a'</code> 到 <code>'z'</code>,如果当前字符出现在 <code>s</code> 中,那么删除出现位置 <strong>最早</strong> 的该字符。</li>
|
||
</ul>
|
||
|
||
<p>请你返回进行 <strong>最后</strong> 一次操作 <strong>之前</strong> 的字符串<em> </em><code>s</code><em> </em>。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong class="example">示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>s = "aabcbbca"
|
||
<b>输出:</b>"ba"
|
||
<b>解释:</b>我们进行以下操作:
|
||
- 删除 s = "<em><strong>a</strong></em>a<em><strong>bc</strong></em>bbca" 中加粗加斜字符,得到字符串 s = "abbca" 。
|
||
- 删除 s = "<em><strong>ab</strong></em>b<em><strong>c</strong></em>a" 中加粗加斜字符,得到字符串 s = "ba" 。
|
||
- 删除 s = "<em><strong>ba</strong></em>" 中加粗加斜字符,得到字符串 s = "" 。
|
||
进行最后一次操作之前的字符串为 "ba" 。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<b>输入:</b>s = "abcd"
|
||
<b>输出:</b>"abcd"
|
||
<b>解释:</b>我们进行以下操作:
|
||
- 删除 s = "<em><strong>abcd</strong></em>" 中加粗加斜字符,得到字符串 s = "" 。
|
||
进行最后一次操作之前的字符串为 "abcd" 。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= s.length <= 5 * 10<sup>5</sup></code></li>
|
||
<li><code>s</code> 只包含小写英文字母。</li>
|
||
</ul>
|