Skip to content

Instantly share code, notes, and snippets.

@algorythm
Created February 15, 2018 08:29
Show Gist options
  • Save algorythm/e3a740e6fc6f4383e628f0096a4861ed to your computer and use it in GitHub Desktop.
Save algorythm/e3a740e6fc6f4383e628f0096a4861ed to your computer and use it in GitHub Desktop.
public static void SleepSort(int[] list)
{
foreach (var i in list)
{
Task.Run(() =>
{
Thread.Sleep(i);
Console.Write($"{i} ");
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment