mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
|
<p>给定 <code>s</code> 和 <code>t</code> 两个字符串,当它们分别被输入到空白的文本编辑器后,如果两者相等,返回 <code>true</code> 。<code>#</code> 代表退格字符。</p>
|
|||
|
|
|||
|
<p><strong>注意:</strong>如果对空文本输入退格字符,文本继续为空。</p>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>示例 1:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>s = "ab#c", t = "ad#c"
|
|||
|
<strong>输出:</strong>true
|
|||
|
<strong>解释:</strong>s 和 t 都会变成 "ac"。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 2:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>s = "ab##", t = "c#d#"
|
|||
|
<strong>输出:</strong>true
|
|||
|
<strong>解释:</strong>s 和 t 都会变成 ""。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 3:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>s = "a#c", t = "b"
|
|||
|
<strong>输出:</strong>false
|
|||
|
<strong>解释:</strong>s 会变成 "c",但 t 仍然是 "b"。</pre>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>提示:</strong></p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li><code>1 <= s.length, t.length <= 200</code></li>
|
|||
|
<li><code>s</code> 和 <code>t</code> 只含有小写字母以及字符 <code>'#'</code></li>
|
|||
|
</ul>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>进阶:</strong></p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li>你可以用 <code>O(n)</code> 的时间复杂度和 <code>O(1)</code> 的空间复杂度解决该问题吗?</li>
|
|||
|
</ul>
|