python 第一个只出现一次的字符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 第一个只出现一次的字符相关的知识,希望对你有一定的参考价值。

"""
input: abaccdeff
output: b

solution: find the first character that only appears once
"""

def FirstChar(s: str) -> str:
    def f(x): return 26+ord(x)-ord('a') if 'a' <= x <= 'z' else ord(x) - ord('A')
    L = [0] * 52
    for c in s:
        L[f(c)] += 1
    for c in s:
        if L[f(c)] == 1:
            return c

def main():
    s = "abaccdeff"
    print(FirstChar(s))

if __name__ == "__main__":
    main()

以上是关于python 第一个只出现一次的字符的主要内容,如果未能解决你的问题,请参考以下文章

python学习:找到字符串中第一个只出现一次的字母

字符流中第一个不重复的字符(python)

54.字符流中第一个不重复的字符(python)

第一个只出现一次的字符位置

最强解析面试题:第一个只出现一次的字符

最强解析面试题:第一个只出现一次的字符