rolling-11

This commit is contained in:
Lars Mueller 2020-03-25 10:54:01 +01:00
parent 77c7dd5175
commit faa47ab595

@ -3,7 +3,8 @@
-- Fisher-Yates
function shuffle(t)
for i = 1, #t-1 do
t[i] = t[math.random(i+1, #t)]
local j = math.random(i+1, #t)
t[i], t[j] = t[j], t[i]
end
return t
end