美文网首页工作生活
209. First Unique Character in a

209. First Unique Character in a

作者: 鸭蛋蛋_8441 | 来源:发表于2019-07-04 07:02 被阅读0次

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

    代码

    相关文章

      网友评论

        本文标题:209. First Unique Character in a

        本文链接:https://www.haomeiwen.com/subject/gcmkhctx.html