工作生活

209. First Unique Character in a

2019-07-04  本文已影响0人  鸭蛋蛋_8441

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一样,用了一样的思路。

代码

上一篇 下一篇

猜你喜欢

热点阅读