Skip to content

Instantly share code, notes, and snippets.

@ssartell

ssartell/2.cs Secret

Created July 11, 2016 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssartell/b855a24c066412abf9b820125d47a20b to your computer and use it in GitHub Desktop.
Save ssartell/b855a24c066412abf9b820125d47a20b to your computer and use it in GitHub Desktop.
/* LINQ Puzzle #2 *******************************************************
Summary: Given a collection of objects, unsort it! (i.e randomize it.)
Sample Input: {"a", "b", "c", "d"}
Sample Output: {"d", "a", "c", "b"}
************************************************************************/
// Given:
var input = Enumerable.Range(0, 100).ToList();
// Your solution goes here:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment