python 字符流中第一個不重複的字符

''' 題目描述 請實現一個函數用來找出字符流中第一個只出現一次的字符。 例如,當從字符流中只讀出前兩個字符"go"時,第一個只出現一次的字符是"g"。 當從該字符流中讀出前六個字符「google"時,第一個只出現一次的字符是"l"。 ''' # -*- coding:utf-8 -*- class Solution: # 返回對應char def __init__(self):
相關文章
相關標籤/搜索