-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0014.py
42 lines (35 loc) · 1.01 KB
/
0014.py
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
from typing import List
class Solution:
def longestCommonPrefix(self, strs: List[str]) -> str:
if len(strs) == 0:
return ''
if len(strs) == 1:
return strs[0]
#max value
minLen = 1000000
for aStr in strs:
currentLen = len(aStr)
if currentLen < minLen:
minLen = currentLen
if minLen == 0:
return ''
lastLoc = 0
for loc in range(0, minLen):
char = strs[0][loc]
thisCharCommon = False
for idx, val in enumerate(strs):
if val[loc] != char:
thisCharCommon = False
break
else:
thisCharCommon = True
if thisCharCommon:
lastLoc = lastLoc+1
else:
break
if lastLoc>0:
return strs[0][0:lastLoc]
else:
return ''
solu = Solution()
print(solu.longestCommonPrefix(["a"]))