Example #1
0
 // END CUT HERE
 // BEGIN CUT HERE
 public static void Main()
 {
     try {
     PlatformJumper ___test = new PlatformJumper();
     ___test.run_test(-1);
     } catch(Exception e) {
     //Console.WriteLine(e.StackTrace);
     Console.WriteLine(e.ToString());
     }
 }
Example #2
0
// END CUT HERE
// BEGIN CUT HERE
    public static void Main()
    {
        try {
            PlatformJumper ___test = new PlatformJumper();
            ___test.run_test(-1);
        } catch (Exception e) {
//Console.WriteLine(e.StackTrace);
            Console.WriteLine(e.ToString());
        }
    }
Example #3
0
        static void Main(string[] args)
        {
            //			EllipseCoverage o = new EllipseCoverage();
            //			Console.WriteLine(o.calculateCoverage(13,
            //-23,
            //49,
            //91,
            //200));

            //Glossary o = new Glossary();
            //string[] g = o.buildGlossary(new string[] { "A ", "a" });
            //for (int i = 0; i < g.Length; i++)
            //	Console.WriteLine(g[i]);

            PlatformJumper o = new PlatformJumper();
            int c = o.maxCoins(new string[]{"0 0 1", "5000 5000 10"},
            100,
            87);
            Console.WriteLine(c);

            Console.ReadLine();
        }