Ejemplo n.º 1
0
        public static SqlString longestSubSequence(SqlString string1, SqlString string2)
        {
            var compString = new CompStrings(string1, string2);
            var sdist      = new StringDist(compString.from, compString.to);

            return(new SqlString(sdist.longestSubSequence()));
        }
 public static SqlString longestSubSequence(SqlString string1, SqlString string2)
 {
     var compString = new CompStrings(string1, string2);
     var sdist = new StringDist(compString.from, compString.to);
     return new SqlString(sdist.longestSubSequence());
 }