js 并集 交集 差集 两种方式
js 并集 交集 差集
let a=new Set([1,2,3])
let b=new Set([4,3,2])
// 并集
let union=new Set([...a,...b])
// 交集
let intersect=new Set([...a].filter(x=>b.has(x)))
// 差集
let xor =new Set([...a].filter(x=>!b.has(x)))
我一般都是用lodash库
[lodash英文地址] [lodash中文地址]
// 并集
_.union([2], [1, 2]);
// => [2, 1]
// 交集
_.intersection([2, 1], [2, 3]);
// => [2]
// 差集
_.xor([2, 1], [2, 3]);
// => [1, 3]
// 去重复
_.uniq([2, 1, 2]);
// => [2, 1]