const _isSameSet = (s1, s2) => { // 补全代码 let sk = [...s1].sort(); let sb = [...s2].sort(); return JSON.stringify(sk)===JSON.stringify(sb) }