请教,怎样随机生成不重复的数?

用rand生成的整数会有重复

image

怎样才能不重复呢???

非常感谢!!!

function randset(r::UnitRange, n)
    out = Set{Int}()
    for i in 1:n 
        push!(x, rand(r))
    end
    out 
end
using StatsBase

sample(1:15, 10, replace=false)
2 个赞

感谢!!!:grinning:

谢谢:grin:

谢谢 :grin: