Find the longest common prefix string among a list of strings. If there is no common prefix, return an empty string. Comparison should be case-sensitive. Return an empty string for null or empty input lists.

Method Signature:

public static String findLongestCommonPrefix(List<String> strings)

Examples:

List<String> strings = new List<String>{ 'flower', 'flow', 'flight' };
String result = findLongestCommonPrefix(strings);
// Result: 'fl'
// Explanation: The common prefix is 'fl'

List<String> strings = new List<String>{ 'dog', 'racecar', 'car' };
String result = findLongestCommonPrefix(strings);
// Result: ''
// Explanation: No common prefix exists

List<String> strings = new List<String>{ 'test', 'testing', 'tester' };
String result = findLongestCommonPrefix(strings);
// Result: 'test'
// Explanation: All strings start with 'test'

List<String> strings = new List<String>();
String result = findLongestCommonPrefix(strings);
// Result: ''
// Explanation: Empty list returns empty string

List<String> strings = new List<String>{ 'apple' };
String result = findLongestCommonPrefix(strings);
// Result: 'apple'
// Explanation: Single string returns itself
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Note

You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.