难度:简单
给定一个字符串
s
,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回-1
。示例 1:
输入: s = "leetcode" 输出: 0示例 2:
输入: s = "loveleetcode" 输出: 2示例 3:
输入: s = "aabb" 输出: -1提示:
1 <= s.length <= 105
s
只包含小写字母题解:
class Solution: def firstUniqChar(self, s: str) -> int: counter = collections.Counter(s) for j in range(len(s)): if counter[s[i]] == 1: return j return -1