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.
 
 
 
 
 
 
amin 9363fe81b2 docs: specifying to use case-sensitive comparison 3 months ago
..
ExerciseRunner.java test: adding subject and main 3 months ago
README.md docs: specifying to use case-sensitive comparison 3 months ago

README.md

Longest Common Prefix

Instructions

Write a function to find the longest common prefix string amongst an array of strings, with case-sensitive comparison. If there is no common prefix, return an empty string "".

Expected Class

public class LongestCommonPrefix {
    public String findLongestCommonPrefix(String[] strs) {
        // Implementation to find the longest common prefix
    }
}

Usage

Here is a possible ExerciseRunner.java to test your class:

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"
    }
}

Expected Output

$ javac *.java -d build
$ java -cp build ExerciseRunner
Longest common prefix: fl
Longest common prefix:
Longest common prefix: inters
$