const _deleteRepeat = array => {
// 补全代码
let set = new Set(array); // ES6的Set集合只允许存在唯一值
return Array.from(set);
}