getMin() public method

public getMin ( string S, int L ) : string
S string
L int
return string
Example #1
0
        static void Main(string[] args)
        {
            EllysSortingTrimmer x = new EllysSortingTrimmer();

            Console.WriteLine(x.getMin("TOPCODER", 3));
            Console.ReadLine();
        }
Example #2
0
 static void Main(string[] args)
 {
     EllysSortingTrimmer x = new EllysSortingTrimmer();
     Console.WriteLine(x.getMin("TOPCODER", 3));
     Console.ReadLine();
 }