1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/第一个只出现一次的字符 [di-yi-ge-zhi-chu-xian-yi-ci-de-zi-fu-lcof].html

22 lines
403 B
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>在字符串 s 中找出第一个只出现一次的字符。如果没有,返回一个单空格。 s 只包含小写字母。</p>
<p><strong>示例 1:</strong></p>
<pre>
输入s = "abaccdeff"
输出:'b'
</pre>
<p><strong>示例 2:</strong></p>
<pre>
输入s = ""
输出:' '
</pre>
<p>&nbsp;</p>
<p><strong>限制:</strong></p>
<p><code>0 &lt;= s 的长度 &lt;= 50000</code></p>