Python 代码
class Solution:
def firstNotRepeatingChar(self, s: str) -> str:
from collections import Counter
cnt = Counter(s)
return next((k for k, v in cnt.items() if v == 1), "#")
利用 Counter 是按照顺序设置 key 以及 next 返回第一个值 && 默认值的设置。