示例#1
0
        static void Main(string[] args)
        {
            ProgramTools.SizeConsoleWindow();

            //new RemoveDupes ().BuildAndRunTests ();
            //new ReturnKthToLast ().BuildAndRunTests ();
            //new DeleteMiddleNode ().BuildAndRunTests ();
            //new Partition ().BuildAndRunTests ();
            //new SumListsReverse ().BuildAndRunTests ();
            //new SumLists ().BuildAndRunTests ();
            //new Palindrome ().BuildAndRunTests ();
            //new Intersection ().BuildAndRunTests ();
            new LoopDetection().BuildAndRunTests();

            ProgramTools.PauseForAnyKey("Press any key to exit");
        }
示例#2
0
        static void Main(string[] args)
        {
            ProgramTools.SizeConsoleWindow();

            new IsUnique().BuildAndRunTests();
            new CheckPermutation().BuildAndRunTests();
            new URLify().BuildAndRunTests();
            new PalindromePermutation().BuildAndRunTests();
            new OneAway().BuildAndRunTests();
            new StringCompression().BuildAndRunTests();
            new RotateMatrix().BuildAndRunTests();
            new ZeroMatrix().BuildAndRunTests();
            new StringRotation().BuildAndRunTests();

            ProgramTools.PauseForAnyKey("Press any key to exit");
        }