コード例 #1
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 static void Main(string[] args)
 {
     KeyDungeonDiv2 x = new KeyDungeonDiv2();
     int[] a = { 0,0,0 };
     int[] b = { 0,0,0 };
     int[] c = { 2, 3, 1 };
     Console.WriteLine(x.countDoors(a,b,c));
     Console.ReadLine();
 }
コード例 #2
0
        static void Main(string[] args)
        {
            KeyDungeonDiv2 x = new KeyDungeonDiv2();

            int[] a = { 0, 0, 0 };
            int[] b = { 0, 0, 0 };
            int[] c = { 2, 3, 1 };
            Console.WriteLine(x.countDoors(a, b, c));
            Console.ReadLine();
        }