LintCode python 小白-简单题-646 First Position Unique Character

题目:Given a string, find the first non-repeating character in it and return it’s index. If it doesn’t exist, return -1.
样例
Given s = “lintcode”, return 0.
Given s = “lovelintcode”, return 2.

思路:

  • 建立一个字典去统计字符串中所有元素出现的频率,(元素为键,频率为值)
  • 然后在字典中按字符串的顺序去查找到第一个频率为1的,返回的是字符串的那个下标位置。

代码:

class Solution:
    # @param {string} s a string
    # @return {int} it's index
   def firstUniqChar(self, s):
        # Write your code here
        a={} #定义一个字典
        for i in range(len(s)):
                a[s[i]]=0   #一开始每个元素频率皆初始化为0
        for i in range(len(s)):
                a[s[i]]+=1  
        for i in range(len(s)):
                if a[s[i]]==1: #满足要求的出现的第一个不重复元素
                    return i
        return -1  #不满足的情况皆返回-1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值