예제 #1
0
파일: Program.cs 프로젝트: pmiriyals/Amazon
 static void Main(string[] args)
 {
     SuffixLRS lrs = new SuffixLRS();
     string s = "Dont ask what the country has done for ask what did you do for your country";
     lrs.LargestRepeatedSubString(s);
     Console.ReadLine();
 }
예제 #2
0
        static void Main(string[] args)
        {
            SuffixLRS lrs = new SuffixLRS();
            string    s   = "Dont ask what the country has done for ask what did you do for your country";

            lrs.LargestRepeatedSubString(s);
            Console.ReadLine();
        }