Skip to content
Advertisement

Java Array of unique randomly generated integers

JavaScript

I have a method above which should generate an array of random elements that the user specifies. The randomly generated integers should be between 0 and 10 inclusive. I am able to generate random integers but the problem I have is checking for uniqueness. My attempt to check for uniqueness is in my code above but the array still contains duplicates of integers. What am I doing wrong and could someone give me a hint?

Advertisement

Answer

JavaScript

You do find the duplicate values. However, you replace it with another random number that may be a duplicate. Instead, try this:

JavaScript

However, this method is inefficient. I recommend making a list of numbers, then randomizing it:

JavaScript

Or you could do this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement