LeetCode:387字符串中唯一出现一一次的字符

Posted Halo辉Go

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:387字符串中唯一出现一一次的字符相关的知识,希望对你有一定的参考价值。

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

案例:

s = "leetcode"
返回 0.

s = "loveleetcode",
返回 2.
 

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

技术图片
 1 class Solution:
 2     def firstUniqChar(self, s: str) -> int:
 3         my_dict = {}
 4         for char in s:      # for 遍历 先把各种字符(作为 Key)中保存到字典之中 对每个字符出现的次数作为 value 保存
 5             if char not in my_dict:
 6                 my_dict[char] = 1
 7             else:
 8                 my_dict[char] += 1
 9         if 1 not in my_dict.values():
10             return -1
11         else:
12             for i in  range(len(s)):
13                 if my_dict[s[i]] == 1:
14                     return i
View Code

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/first-unique-character-in-a-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

以上是关于LeetCode:387字符串中唯一出现一一次的字符的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode|387. 字符串中的第一个唯一字符

leetcode387. 字符串中的第一个唯一字符

前端与算法 leetcode 387. 字符串中的第一个唯一字符

leetcode-387-字符串中的第一个唯一字符

leetcode——387. 字符串中的第一个唯一字符

字符串387. 字符串中的第一个唯一字符