You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
748 B

public class ExerciseRunner {
public static void main(String[] args) {
LongestCommonPrefix lcp = new LongestCommonPrefix();
// Test case 1
String[] strs1 = {"flower", "flow", "flight"};
System.out.println("Longest common prefix: " + lcp.findLongestCommonPrefix(strs1)); // Expected output: "fl"
// Test case 2
String[] strs2 = {"dog", "racecar", "car"};
System.out.println("Longest common prefix: " + lcp.findLongestCommonPrefix(strs2)); // Expected output: ""
// Test case 3
String[] strs3 = {"interspecies", "interstellar", "interstate"};
System.out.println("Longest common prefix: " + lcp.findLongestCommonPrefix(strs3)); // Expected output: "inters"
}
}