14. Longest Common Prefix Leetcode Solution

Longest Common Prefix Leetcode Problem :

Write a function to find the longest common prefix string amongst an array of strings.

If there is no common prefix, return an empty string “”.

jump game leetcode

Longest Common Prefix Leetcode Solution :

Constraints :

  • 1 <= strs.length <= 200
  • 0 <= strs[i].length <= 200
  • strs[i] consists of only lowercase English letters.

Example 1:

  • Input: strs = [“dog”,”racecar”,”car”]
  • Output: “”

Approach :

  1. Initialize an empty string ans to store the common prefix.
  2. Sort the input list v lexicographically. This step is necessary because the common prefix should be common to all the strings, so we need to find the common prefix of the first and last string in the sorted list.
  3. Iterate through the characters of the first and last string in the sorted list, stopping at the length of the shorter string.
  4. If the current character of the first string is not equal to the current character of the last string, return the common prefix found so far.
  5. Otherwise, append the current character to the ans string.
  6. Return the ans string containing the longest common prefix.

Prime Course Trailer

Related Banners

Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription

Code :

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others

Checkout list of all the video courses in PrepInsta Prime Subscription

Checkout list of all the video courses in PrepInsta Prime Subscription