1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/招式拆解 II [di-yi-ge-zhi-chu-xian-yi-ci-de-zi-fu-lcof].html
2023-12-09 18:53:53 +08:00

24 lines
600 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>某套连招动作记作仅由小写字母组成的序列 <code>arr</code>,其中 <code>arr[i]</code><code>i</code> 个招式的名字。请返回第一个只出现一次的招式名称,如不存在请返回空格。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>arr = "abbccdeff"
<strong>输出:</strong>'a'
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>arr = "ccdd"
<strong>输出:</strong>' '
</pre>
<p>&nbsp;</p>
<p><strong>限制:</strong></p>
<p><code>0 &lt;= arr.length&nbsp;&lt;= 50000</code></p>