LeetCode 387: 字符串中的第一个唯一字符 First Unique Character in a String
题目:给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回-1。Givenastring,findthefirstnon-repeatingcharacterinitandreturnit'sindex.Ifitdoesn'texist,return-1.案例:s="leetcode"返回0.s="loveleetcode",返回2.注意事项:您可以假定该字符串只包含小写