You are given an array of strings strs. Return the longest common prefix of all the strings.
If there is no longest common prefix, return an empty string "".
Example 1:
Input: strs = ["bat","bag","bank","band"]
Output: "ba"Example 2:
Input: strs = ["dance","dag","danger","damage"]
Output: "da"Example 3:
Input: strs = ["neet","feet"]
Output: ""Constraints:
1 <= strs.length <= 2000 <= strs[i].length <= 200strs[i] is made up of lowercase English letters if it is non-empty.