- 209. First Unique Character in a
- 209. First Unique Character in a
- 2018-10-19 First Unique Characte
- LeetCode.387字符串中的第一个唯一字符
- Unique/Duplicate String
- [刷题防痴呆] 0387 - 字符串中的第一个唯一字符 (Fir
- First Unique Character in a Stri
- [LeetCode]First Unique Character
- 387 First Unique Character in a
- Leetcode PHP题解--D100 387. First
Description
Find the first unique character in a given string. You can assume that there is at least one unique character in the string.
Example
Example 1:
Input: "abaccdeff"
Output: 'b'
Explanation:
There is only one 'b' and it is the first one.
Example 2:
Input: "aabccd"
Output: 'b'
Explanation:
'b' is the first one.
思路:
和960一样,用了一样的思路。
代码:

网友评论