예제 #1
0
파일: Program.cs 프로젝트: pjbarry/KodeKata
        static void Main(string[] args)
        {
            var DayOne = new BinarySearchTwo();
            Console.WriteLine(DayOne.chop(5, new int[] {1,5}).ToString());

            Console.ReadLine();
        }
예제 #2
0
 public void Setup()
 {
     _BS = new BinarySearchTwo();
 }