(js)leetcode 387. 字符串中的第一个唯一字符

题目:

给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

示例:

s = "leetcode"
返回 0

s = "loveleetcode"
返回 2

思路:

1. 使用Map统计每个字符出现的次数

2. 遍历Map中的数据,第一个值为1的数字所在的位置,即为所求结果

代码实现:

/**
 * @param {string} s
 * @return {number}
 */
var firstUniqChar = function(s) {
    let map = new Map(), res = -1;
    for(let i = 0; i < s.length; i++) {
        let value = map.get(s[i]);
        if(value) {
            map.set(s[i], value + 1);
        } else {
            map.set(s[i], 1);
        }
    }
    for(let [key,value] of map.entries()){
        if(value === 1) {
            res = s.indexOf(key);
            break;
        }
    }
    
    return res

};

运行结果:

(js)leetcode 387. 字符串中的第一个唯一字符_第1张图片

你可能感兴趣的:(leetcode-js,leetcode,js)