欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

剑指Offer58-字符流中第一个不重复的字符

程序员文章站 2022-06-17 16:15:38
...

剑指Offer58-字符流中第一个不重复的字符
关键是知道字符流是什么,问题就很好解决了。

# -*- coding:utf-8 -*-
class Solution:
    # 返回对应char
    def __init__(self):
        self.s = ''
    def FirstAppearingOnce(self):
        # write code here
        for item in self.s:
            if self.s.count(item) == 1:
                return item
        return '#'
    def Insert(self, char):
        # write code here
        self.s += char
相关标签: 剑指Offer