using System;
/********* Goal: Fill in the array with Random numbers
*
* You have an array with size N.
* Fill the array with numbers from 0 => N-1 in a random order with no repetitions.
* - Each number should only appear once.
* - The array will be radomize, meaning there is no logic that can determine which number goes to which cell.
*******************************************/
public class Program
{
int arrSize = 100;
static void Main()
DateTime time = DateTime.Now;
time = DateTime.Now;
int[] agg = FillArray();
$"Total Time: {(DateTime.Now - time).TotalMilliseconds}".Dump();
}
static bool Testing(int[] arr)
return false;
static int[] FillArray()
return null;