【算法心得】js string改其中的某位要substring;replace+正则;Set;Set 转 Array

https://leetcode.cn/problems/remove-invalid-parentheses/

js不能直接操作string修改它的某个字符

只能靠拼接

// x
str[i]='a'

// √
str = str.subString(0, i) + 'a' + str.subString(i+1)

str.replace(/\s*/g,“”) 去空格

Set

let set= new Set();

set.add(x);
console.log(set.has(x)) // true
set.delete(x);
console.log(set.has(x)) // false

return Array.from(set);

你可能感兴趣的:(算法,javascript,前端,开发语言,算法)