美文网首页
14.最长公共前缀

14.最长公共前缀

作者: 寂灭天骄小童鞋 | 来源:发表于2020-03-05 19:38 被阅读0次

https://leetcode-cn.com/problems/longest-common-prefix/

func longestCommonPrefix(_ strs: [String]) -> String {
    if strs.count <= 0 {return ""}
    var preStr = strs[0]
    for (index, str) in strs.enumerated() {
        if index == 0 {continue}
        while !str.hasPrefix(preStr) {
            let startIndex = preStr.index(preStr.startIndex, offsetBy: 0)
            let endIndex = preStr.index(preStr.startIndex, offsetBy: (preStr.count - 1))
            //每次删除末尾一个字符
            let tmpStr = preStr[startIndex..<endIndex]
            preStr = String(tmpStr)
            if preStr.count == 0 {return ""}
        }
    }
    return preStr
}

相关文章

  • 14. 最长公共前缀

    20180923-摘抄自14. 最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,...

  • 算法第3天:最长公共前缀

    leetcode 14. 最长公共前缀 simple 编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共...

  • [day4] [LeetCode] [title14,122]

    14.最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串""。 示例 ...

  • 14. 最长公共前缀

    14. 最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀,返回空字符串 ""。 说明...

  • 14.最长公共前缀

    14.最长公共前缀 难度:简单 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ...

  • 14. 最长公共前缀

    14.最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串""。 示例1...

  • [LeetCode]14-最长公共前缀

    14. 最长公共前缀编写一个函数来查找字符串数组中的最长公共前缀。如果不存在公共前缀,返回空字符串 ""。例1:输...

  • 每日Leetcode—算法(2)

    14.最长公共前缀 输入: ["flower","flow","flight"],输出: "fl"输入: ["do...

  • 14. 最长公共前缀

    14. 最长公共前缀[https://leetcode-cn.com/problems/longest-commo...

  • LeetCode学习计划:LeetCode 75-Level-2

    14. 最长公共前缀[https://leetcode.cn/problems/longest-common-pr...

网友评论

      本文标题:14.最长公共前缀

      本文链接:https://www.haomeiwen.com/subject/ybgcrhtx.html