Exemple #1
0
        static void Main(string[] args)
        {
            var hashTables = new RansomNote();

            hashTables.Main(args);
            Console.ReadLine();
        }
Exemple #2
0
 static void Main(string[] args)
 {
     PockerHandSolution.PockerHandSolutionMain();
     PockerHandTry2.PokerHandMain();
     QueueWithTwoStacks.QueueWithTwoStackMain();
     BalancedBrackets.BalancedBracketsMain();
     RansomNote.RansomNoteMain();
     SameOccurance.SameOccuranceMain();
     MaximumGcdAndSum.MaximumGcdAndSumMain();
     OnceInATram.OnceInATramMain();
     TwoRobots.TwoRobotsMain();
     CoinChangeProblem.CoinChangeProblemMain();
     Equal.EqualMain();
 }
Exemple #3
0
        public static void Main(string[] args)
        {
            LeftRotation test = new LeftRotation();
            //test.Run();                                 // Timed out on last two

            Anagram test2 = new Anagram();
            //test2.Run();                                  // Full complete

            FibonacciCalculator test3 = new FibonacciCalculator();
            //test3.Run();

            RansomNote test4 = new RansomNote();
            //test4.Run();

            LonelyInteger test5 = new LonelyInteger();
            //test5.Run();
        }