Skip to content

Instantly share code, notes, and snippets.

View jshinevar's full-sized avatar

James Shinevar jshinevar

View GitHub Profile
//https://stackoverflow.com/questions/273313/randomize-a-listt
private static Random rng = new Random();
public static void Shuffle<T>(this IList<T> list)
{
int n = list.Count;
while (n > 1) {
n--;
int k = rng.Next(n + 1);
T value = list[k];