Skip to content

Instantly share code, notes, and snippets.

@srcnalt
Created March 21, 2019 21:28
Show Gist options
  • Save srcnalt/a53f877276440f57cb569c596d61c6e4 to your computer and use it in GitHub Desktop.
Save srcnalt/a53f877276440f57cb569c596d61c6e4 to your computer and use it in GitHub Desktop.
int start = 0; //inclusive
int end = 20; //exclusive
Random random = new Random();
int[] res = Enumerable.Range(start, end).OrderBy( i => random.Next()).ToArray<int>();
Console.WriteLine(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment