-
Notifications
You must be signed in to change notification settings - Fork 3
/
14.longest-common-prefix.go
71 lines (70 loc) · 1.32 KB
/
14.longest-common-prefix.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* [14] Longest Common Prefix
*
* https://leetcode.com/problems/longest-common-prefix/description/
*
* algorithms
* Easy (31.78%)
* Total Accepted: 300.3K
* Total Submissions: 945K
* Testcase Example: '["flower","flow","flight"]'
*
* Write a function to find the longest common prefix string amongst an array
* of strings.
*
* If there is no common prefix, return an empty string "".
*
* Example 1:
*
*
* Input: ["flower","flow","flight"]
* Output: "fl"
*
*
* Example 2:
*
*
* Input: ["dog","racecar","car"]
* Output: ""
* Explanation: There is no common prefix among the input strings.
*
*
* Note:
*
* All given inputs are in lowercase letters a-z.
*
*/
func longestCommonPrefix(strs []string) string {
length := len(strs)
if length == 0 {
return ""
} else if length == 1 {
return strs[0]
}
var res []byte = []byte(strs[0])
for i := 1; i < length; i++ {
ele := []byte(strs[i])
if res = findCommonPrefix(res, ele); len(res) == 0 {
return ""
}
}
return string(res)
}
func findCommonPrefix(a, b []byte) []byte {
lenA, lenB, index := len(a), len(b), 0
if lenA == 0 || lenB == 0 {
return []byte("")
}
for i, v := range a {
if i >= lenB {
break
}
if v != b[i] && i == 0 {
return []byte("")
} else if v != b[i] {
return b[0:i]
}
index = i
}
return b[:index+1]
}