Skip to content
On this page

387. 字符串中的第一个唯一字符

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

示例 1:
输入: s = "leetcode"
输出: 0

示例 2:
输入: s = "loveleetcode"
输出: 2

示例 3:
输入: s = "aabb"
输出: -1

提示:
1 <= s.length <= 105
s  只包含小写字母

javascript
/**
 * @param {string} s
 * @return {number}
 */
var firstUniqChar = function (s) {
  var cache = []
  for (var i = 0; i < s.length; i++) {
    var word = s[i]
    if (cache.includes(word)) {
      continue
    } else {
      cache.push(word)
      if (s.indexOf(word, i + 1) === -1) {
        return i
      }
    }
  }
  return -1
}
console.log(firstUniqChar("leetcode"))
console.log(firstUniqChar("loveleetcode"))
console.log(firstUniqChar("aabb"))