Algorithm-算法常用函数On this page常用函数随机排序export const randomArr = (arr = []) => { const optArr = [...arr]; const res = []; while (optArr.length) { const randomIndex = Math.floor(Math.random() * optArr.length); res.push(optArr[randomIndex]); optArr.splice(randomIndex, 1); } return res;};矩阵