387. 字符串中的第一个唯一字符
给定一个字符串 s ,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回 -1 。
class Solution {
public:
int firstUniqChar(string s) {
int length=s.size();
if(length==1){
return 0;
}
unordered_map<char,int> countmap;
for(char k:s){
countmap[k]++;
}
for(int i=0;i<length;i++){
if(countmap[s[i]]==1){
return i;
}
}
return -1;
}
};