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

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM