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 ""
.
Example 1:
Input: strs = ["flower","flow","flight"] Output: "fl"
Example 2:
Input: strs = ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings.
Constraints:
1 <= strs.length <= 200
0 <= strs[i].length <= 200
strs[i]
consists of only lower-case English letters.
class Solution:
def longestCommonPrefix(self, strs: List[str]) -> str:
n = len(strs)
if n == 0:
return ''
for i in range(len(strs[0])):
for j in range(1, n):
if len(strs[j]) <= i or strs[j][i] != strs[0][i]:
return strs[0][:i]
return strs[0]
class Solution {
public String longestCommonPrefix(String[] strs) {
int n;
if ((n = strs.length) == 0) return "";
for (int i = 0; i < strs[0].length(); ++i) {
for (int j = 1; j < n; ++j) {
if (strs[j].length() <= i || strs[j].charAt(i) != strs[0].charAt(i)) {
return strs[0].substring(0, i);
}
}
}
return strs[0];
}
}
class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
int n;
if ((n = strs.size()) == 0) return "";
for (int i = 0; i < strs[0].size(); ++i) {
for (int j = 1; j < n; ++j) {
if (strs[j].size() <= i || strs[j][i] != strs[0][i]) {
return strs[0].substr(0, i);
}
}
}
return strs[0];
}
};
func longestCommonPrefix(strs []string) string {
if len(strs) == 0 {
return ""
}
var b strings.Builder
m, n := len(strs[0]), len(strs)
LOOP:
for i := 0; i < m; i++ {
for j := 1; j < n; j++ {
if i >= len(strs[j]) || strs[0][i] != strs[j][i] {
break LOOP
}
}
b.WriteByte(strs[0][i])
}
return b.String()
}