leecode-14-最长公共前缀编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串""。 123456789示例 1:输入: ["flower","flow","flight"]输出: "fl"示例 2:输入: ["dog","racecar","car"]输出: ""解释: 输入不存在公共前缀。 说明: 所有输入只包含小写字母 a-z 。 123456789101112131415161718192021#!/usr/bin/env python# -*- coding: utf-8 -*-# author:sarizzm time:2020/12/21 0021class Solution: def longestCommonPrefix(self, strs): strls = '' for le in zip(*strs): if len(set(le)) == 1: strls += le[0] else: return strls return strlsprint(Solution().longestCommonPrefix(["dog","racecar","car"]))#print(Solution().longestCommonPrefix(["flower","flow","flight"]))print('') 文章作者: zhouzhm文章链接: https://sarizzm.github.io/2020/12/21/leecode-14.zui-chang-gong-gong-qian-zhui/版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 codemk!leecode 打赏wechatalipay上一篇leecode-80-删除排序数组中的重复项 I下一篇leecode-13 罗马数字转整数 相关推荐 2020-05-03leecode-01-twosum(两数之和) 2020-05-05leecode-02-two-sum 2020-05-06leecode-03-lengthOfLongestSubstring 2020-05-22leecode-04-median-of-two-sorted-arrays 2020-12-21leecode-13 罗马数字转整数 2020-12-23leecode-20-有效的括号 评论