Exemple #1
0
 public void Int(int[] s, int[] t, int[] expected)
 {
     StringLibEx.LCS(s, t).Should().Equal(expected);
 }
Exemple #2
0
 public void String(string s, string t, string expected)
 {
     StringLibEx.LCS(s, t).Should().Equal(expected.ToCharArray());
 }