简单题
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
原文地址:https://www.cnblogs.com/taoyuxin/p/11737234.html
时间: 2024-10-09 01:27:48