-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path387.字符串中的第一个唯一字符.js
80 lines (76 loc) · 1.23 KB
/
387.字符串中的第一个唯一字符.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* @lc app=leetcode.cn id=387 lang=javascript
*
* [387] 字符串中的第一个唯一字符
*
* https://leetcode.cn/problems/first-unique-character-in-a-string/description/
*
* algorithms
* Easy (54.83%)
* Likes: 551
* Dislikes: 0
* Total Accepted: 298.7K
* Total Submissions: 544.2K
* Testcase Example: '"leetcode"'
*
* 给定一个字符串 s ,找到 它的第一个不重复的字符,并返回它的索引 。如果不存在,则返回 -1 。
*
*
*
* 示例 1:
*
*
* 输入: s = "leetcode"
* 输出: 0
*
*
* 示例 2:
*
*
* 输入: s = "loveleetcode"
* 输出: 2
*
*
* 示例 3:
*
*
* 输入: s = "aabb"
* 输出: -1
*
*
*
*
* 提示:
*
*
* 1 <= s.length <= 10^5
* s 只包含小写字母
*
*
*/
// @lc code=start
/**
* @param {string} s
* @return {number}
*/
var firstUniqChar = function (s) {
let _s = s.split(""),
map = new Map();
// 把每个字母出现的次数存入map
for (const v of _s) {
if (!map.has(v)) {
map.set(v, 1);
} else {
map.set(v, map.get(v) + 1);
}
}
// 找到第一个出现次数为1的字母
for (let i = 0; i < _s.length; i++) {
if (map.get(_s[i]) === 1) {
return i;
}
}
return -1;
};
firstUniqChar("aabb");
// @lc code=end