Question
Random expression without repeating
I was looking for a solution to a problem. When I apply this expression
i = Math.round(random(1, 3)
It chooses a sequence of numbers with repetitions.. like...
1, 3, 2, 2, 2, 3, 1, 3, 3...
I'd like to know if there's a way to do the same thing without repeating numbers.
thanks!
