longest_common_prefix
longest_common_prefix.go 源码
package string
// 最长公共前缀
func longestCommonPrefix(strs []string) string {
if strs == nil || len(strs) == 0 {
return ""
}
res := ""
for i := 0; i < len(strs[0]); i++ {
for j := 1; j < len(strs); j++ {
if i >= len(strs[j]) || strs[j][i] != strs[0][i] {
return res
}
}
res += string(strs[0][i])
}
return res
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦