题解 | #找出字符串中第一个只出现一次的字符#
找出字符串中第一个只出现一次的字符
https://www.nowcoder.com/practice/e896d0f82f1246a3aa7b232ce38029d4
str1=input()
dic={}
resul=''
for i in str1:
if i not in dic:
dic[i]=1
else:
dic[i]=dic[i]+1
for key,value in dic.items():
if value==1:
resul=key
break
if resul=='':
print(-1)
else:
print(resul)
这为啥是中等啊。。。
深信服公司福利 790人发布