//去重复
unique(arr1) {
const res = new Map();
return arr1.filter((a) => !res.has(a.level) && res.set(a.level, 1))
},
uniqueFun(arr, type) {
const res = new Map();
return arr.filter((a) => !res.has(a[type]) && res.set(a[type], 1));
}
相关文章
- 09-29Mapreduce实例——去重
- 09-29Python数据分析(4)-numpy数组的属性操作1. ndarray的属性2. ndarray元素的属性3. ndarray元素的类型
- 09-29clickhouse表引擎和去重
- 09-29复杂数组去重
- 09-29[leetcode]80. Remove Duplicates from Sorted Array II有序数组去重(单个元素可出现两次)
- 09-29数组去重(ES5、ES6)
- 09-29python-二维以上的多维列表/数组去重
- 09-29Python中DataFrame去重
- 09-29Codeforces Round #345(Div. 2)-651A.水题 651B.。。。 651C.去重操作 真是让人头大
- 09-29列表去重几种方法 python