leetcode——387. 字符串中的第一个唯一字符
Posted 欣姐姐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——387. 字符串中的第一个唯一字符相关的知识,希望对你有一定的参考价值。
简单题
class Solution(object): def firstUniqChar(self, s): """ :type s: str :rtype: int """ k=[] i=0 while i<len(s): if s[i] in k: i+=1 elif s.count(s[i])==1: return i else: k.append(s[i]) i+=1 return -1
执行用时 :176 ms, 在所有 python 提交中击败了53.69%的用户
内存消耗 :12.2 MB, 在所有 python 提交中击败了24.70%的用户
——2019.10.25
以上是关于leetcode——387. 字符串中的第一个唯一字符的主要内容,如果未能解决你的问题,请参考以下文章
leetcode python 387. 字符串中的第一个唯一字符 383. 赎金信