예제 #1
0
        static void Main(string[] args)
        {
            AList2O list = new AList2O();

            int[] z = { 5, 254, 1, 6, 4 };
            list.Init(z);

            list.ToArray();
            Console.ReadKey();
        }
예제 #2
0
 public void GetMinTest(string[] array, string result)
 {
     lst.Init(array);
     Assert.AreEqual(result, lst.Min());
 }