const _getUniqueNums = (start,end,n) => {
   // 补全代码
   return Array(n).fill(n).map(_ => {
	 return Math.random() * (end - start) + start
   })
 }