LeetCode 387. First Unique Character in a String 字符串中的第一个唯一字符
链接https://leetcode-cn.com/problems/first-unique-character-in-a-string/description/要求给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回-1。s="leetcode"返回0.s="loveleetcode",返回2.相关代码思路:全部遍历会超出时间限制。用set过滤掉重复字符后用sorte