题解 | #无重复数组#
无重复数组
http://www.nowcoder.com/practice/d2fa3632268b41df9bc417b74802ad8c
const _getUniqueNums = (start, end, n) => {
// set 去重
const con = new Set()
// 生成 n 个不重复的随机数
while (con.size < n) {
// Math.random 生成 [0, 1) 的数字,可以将 结果 * (end - start) + start 扩大区间, + 1 是为了取到 end
con.add(Math.floor(Math.random() * (end - start + 1) + start))
}
return [...con]
}