配列の中身をシャフルする
code:shuffle.coffee
shuffle = (array) ->
n = array.length
while n
i = Math.floor(Math.random() * n--)
code:shuffle.js
let n = a.length;
while (a) {
const i = Math.floor(Math.random() * n--);
}
上のはそのつもりで書いたのですが... 増井俊之.icon
ホントだよく見たらコードおんなじでした……takker.icon
申し訳ないです……
code:js
function shuffle(array) {
let result = array;
for (let i = result.length; 1 < i; i--) {
const k = Math.floor(Math.random() * i);
}
return result;
}
? 配列(の中身)?を(シャフルする|ランダムに並び替える) References