We are about to switch to a new forum software. Until then we have removed the registration on this forum.
in a random order such that each number (and none outside this range) is returned just once
create an intlist containing all the required values, call shuffle().
https://processing.org/reference/IntList.html
final int QTY = 15; final IntList range = IntList.fromRange(QTY); println(range); range.shuffle(); println(range); exit();
Answers
create an intlist containing all the required values, call shuffle().
https://processing.org/reference/IntList.html