在字符串中,可以直接对字符进行计数s.count(i)
代码如下:
# -*- coding:utf-8 -*-
class Solution:
def FirstNotRepeatingChar(self, s):
# write code here
n=len(s)
if n==0: #这步可别忘了 ,经常容易忽略
return -1
for i in s:
if s.count(i)==1:
m=s.find(i) #这步检索位置,也可以换成index
break
return m
网友评论