Julia Programming Language
How do I create an array with random unique numbers in a specific range?
New to Julia
question
,
random
rafael.guerra
June 21, 2024, 10:31pm
8
If it matters, it might be more efficient to do:
using StatsBase sample(1:40, 30; replace=false)
9 Likes
show post in topic