5 lines
79 B
Mathematica
5 lines
79 B
Mathematica
function list = randSort(list)
|
|
|
|
list = list( randperm(numel(list)) );
|
|
|
|
end
|