码迷,mamicode.com
首页 > 其他好文 > 详细

第一个只出现一次的字符

时间:2021-07-21 17:39:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   sel   遍历   stun   HERE   出现   code   rac   字符   

遍历的话若全部遍历则为N,若遍历k次,则为k

class Solution:
    """
    @param str: str: the given string
    @return: char: the first unique character in a given string
    """
    def firstUniqChar(self, str):
        # Write your code here
        for i in str:
            b = str.count(i) # 时间复杂度太大了
            if b == 1:
                return i
                # 遍历不从前遍历,可以减少遍历次数

第一个只出现一次的字符

标签:ret   sel   遍历   stun   HERE   出现   code   rac   字符   

原文地址:https://www.cnblogs.com/wkhzwmr/p/15038296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!