Leetcode练习(Python):第387题:字符串中的第一个唯一字符:给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

题目:

字符串中的第一个唯一字符:给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

案例:

s = "leetcode"
返回 0.

s = "loveleetcode",
返回 2.

 

注意事项:您可以假定该字符串只包含小写字母。

思路:

哈希表,较简单。

程序:

class Solution:
    def firstUniqChar(self, s: str) -> int:
        if not s:
            return -1
        myHashMap = {}
        for index in range(len(s)):
            if s[index] not in myHashMap:
                myHashMap[s[index]] = 1
            else:
                myHashMap[s[index]] += 1
        result = -1
        for index2 in myHashMap:
            if myHashMap[index2] == 1:
                result = s.index(index2)
                break
        return result

  

posted on 2020-06-01 10:50  桌子哥  阅读(1234)  评论(0编辑  收藏  举报