最长公共前缀
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 “”。
示例 1:
输入:strs = [“flower”,”flow”,”flight”]
输出:”fl”
示例 2:
输入:strs = [“dog”,”racecar”,”car”]
输出:””
解释:输入不存在公共前缀。
提示:
- 1 <= strs.length <= 200
- 0 <= strs[i].length <= 200
- strs[i] 仅由小写英文字母组成
题解
1 | impl Solution { |
解释
- 找出所有字符串的第{index}个元素,判断是否全部相等。
- 如果相等放入结果中,继续循环
- 不相等跳出外层循环,返回结果
- 0ms,2.1mb
来源
- 作者:力扣 (LeetCode)
- 链接:https://leetcode.cn/leetbook/read/top-interview-questions-easy/xnmav1/
- 来源:力扣(LeetCode)
- 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。