What would you like to Propose?
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 "".
Issue details
Longest Common Prefix
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 "".
Input: strs = ["flower","flow","flight"]
Output: "fl"
Additional Information
No response