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

            int[] a = { 2, 3, 1, 7 };
            int[] b = { 1, 1, 2, 2 };
            Console.WriteLine(x.decode("Misip", a, b));
            Console.ReadLine();
        }