实现一

function shuffle1(arr){
  const result = [];
  let random = 0;
  while(arr.length > 0){
    random = Math.floor(Math.random() * arr.length);
    result.push(arr[random]);
    arr.splice(random,1);
  }
  return result
}
最后修改日期: 2024年 4月 1日

作者

留言

撰写回覆或留言

发布留言必须填写的电子邮件地址不会公开。