Esempio n. 1
0
 public void TestMethod1()
 {
     Assert.AreEqual("fl", VerticalScanning.LongestCommonPrefix(new string[] { "flower", "flow", "flight" }));
 }
Esempio n. 2
0
 public void TestMethod2()
 {
     Assert.AreEqual("", VerticalScanning.LongestCommonPrefix(new string[] { "dog", "racecar", "car" }));
 }