1. 程式人生 > >LeetCode刷題之387Python字串中的第一個唯一字元

LeetCode刷題之387Python字串中的第一個唯一字元

題目:

給定一個字串,找到它的第一個不重複的字元,並返回它的索引。如果不存在,則返回 -1。

案例:

s = "leetcode"
返回 0.

s = "loveleetcode",
返回 2.

注意事項:您可以假定該字串只包含小寫字母。

我的解答:

先計數,返回第一個計數值為1的字元。

class Solution(object):
    def firstUniqChar(self, s):
        """
        :type s: str
        :rtype: int
        """
        dic = {}
        for i in s:#i是字元
            if i not in dic:
                dic[i] = 1
            else:
                dic[i] = dic[i] + 1
        
        for i in range(len(s)):#i是索引
            if dic[s[i]] == 1:
                return i
        return -1