-
Notifications
You must be signed in to change notification settings - Fork 0
/
1047.删除字符串中的所有相邻重复项.js
57 lines (55 loc) · 1.37 KB
/
1047.删除字符串中的所有相邻重复项.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
/*
* @lc app=leetcode.cn id=1047 lang=javascript
*
* [1047] 删除字符串中的所有相邻重复项
*
* https://leetcode-cn.com/problems/remove-all-adjacent-duplicates-in-string/description/
*
* algorithms
* Easy (68.68%)
* Likes: 139
* Dislikes: 0
* Total Accepted: 41.4K
* Total Submissions: 58.5K
* Testcase Example: '"abbaca"'
*
* 给出由小写字母组成的字符串 S,重复项删除操作会选择两个相邻且相同的字母,并删除它们。
*
* 在 S 上反复执行重复项删除操作,直到无法继续删除。
*
* 在完成所有重复项删除操作后返回最终的字符串。答案保证唯一。
*
*
*
* 示例:
*
* 输入:"abbaca"
* 输出:"ca"
* 解释:
* 例如,在 "abbaca" 中,我们可以删除 "bb" 由于两字母相邻且相同,这是此时唯一可以执行删除操作的重复项。之后我们得到字符串
* "aaca",其中又只有 "aa" 可以执行重复项删除操作,所以最后的字符串为 "ca"。
*
*
*
*
* 提示:
*
*
* 1 <= S.length <= 20000
* S 仅由小写英文字母组成。
*
*
*/
// @lc code=start
/**
* @param {string} S
* @return {string}
*/
var removeDuplicates = function(S) {
const f=s=>s.replace(/([a-z])\1{1}/g,'')
while(f(S)!==S){
S=f(S)
}
return S
};
// @lc code=end