using System;
using System.Collections.Generic;
//
// [shuffle]
// - list comes in
// - shuffle (randomize the order) of the list
// - return results
public class Program
{
public static void Main()
var my_list = new List<object>
1, 2, 3, 4, 5,
"a", "b", "c", "d", "e",
6.0, 7.0, 8.0, 9.0, 10.0
};
var result = Shuffle(my_list);
foreach(var r in result)
Console.Write(r + " ");
}
public static List<object> Shuffle(List<object> lst)
// implement me !!
throw new NotImplementedException();