classSolution(object): deflongestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """ ifnot strs: return"" shortest = min(strs, key=len) for i, ch in enumerate(shortest): for other in strs: if other[i] != ch: return shortest[:i] return shortest