I realize that using random does not generate truly random numbers, but I do not understand why this code shouldn't work to prevent repetition. The goal is to derive 8 unique numbers from between (and not including) 0 and 44. There aren't any errors in running the code, but repeats do occur:
//Loop Begins Within Main
for (int i = 0; i < 8; i++)
{
//Begins Recursion
int x = Unique8(rndm, num8);
num8[i] = x;
}
//Recursion Takes Place Outside of the Main with Static Declarations
static Random rndm = new Random();
static int[] num8 = new int[8];
static int Unique8 (Random rndm, int[] num8)
{
int x = rndm.Next(1, 43);
//Seeks if Number is Repeated
if (num8.Contains(x))
{
//If So, Recursion Takes Place
Unique8(rndm, num8);
}
//Returns Value to Original Loop to be Assigned to Array
return x;
}
If Random is regenerating numbers because of an algorithm, why are they passing through the recursion? Why doesn't this become an endless loop?
I've found a good solution to this, akin to the shuffling of a deck and drawing cards off of the top. Creating the original sorted array is easy, but I don't understand how it is 'shuffled'. How do you disorder an array in C#