I\'m trying to get random numbers between 0 and 100. But I want them to be unique, not repeated in a sequence. For example if I got 5 numbers, they should be 82,12,53,64,32
Use Collections.shuffle() on all 100 numbers and select the first five, as shown here.
Collections.shuffle()