예제 #1
0
        static void Main(string[] args)
        {
            DNASingleMatcher x = new DNASingleMatcher();

            Console.WriteLine(x.longestMatch("A", "A"));
            Console.ReadLine();
        }
예제 #2
0
 static void Main(string[] args)
 {
     DNASingleMatcher x = new DNASingleMatcher();
     Console.WriteLine(x.longestMatch("A", "A"));
     Console.ReadLine();
 }