Python给定一个只包含小写字母的字符串,请你找到第一个仅出现一次的字符。
时间: 2023-10-30 13:17:26 浏览: 73
python 实现 第一个只出现一次的字符
我可以回答这个问题。可以使用字典来记录每个字符出现的次数,然后再遍历一遍字符串找到第一个出现次数为1的字符即可。示例代码如下:
```python
def first_unique_char(s):
count = {}
for c in s:
count[c] = count.get(c, 0) + 1
for c in s:
if count[c] == 1:
return c
return None
s = "leetcode"
print(first_unique_char(s)) # 输出 l
```
阅读全文