题解 | #找出字符串中第一个只出现一次的字符#

找出字符串中第一个只出现一次的字符

https://www.nowcoder.com/practice/e896d0f82f1246a3aa7b232ce38029d4


s=input()

s1=[]  # 去重,不改变字母出现的顺序
for i in range(len(s)):
    if s[i] not in s1:
        s1.append(s[i])
#print(s1)

for i in s1:
    if s.count(i)==1:
        print(i)
        break
else:
    print(-1)

全部评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务