forked from SamirPaulb/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path014_Longest_Common_Prefix.py
44 lines (39 loc) · 1.2 KB
/
014_Longest_Common_Prefix.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
43
44
# class Solution(object):
# def longestCommonPrefix(self, strs):
# """
# :type strs: List[str]
# :rtype: str
# """
class Solution(object):
def longestCommonPrefix(self, strs):
ls = len(strs)
if ls == 1:
return strs[0]
prefix = ''
pos = 0
while True:
try:
current = strs[0][pos]
except IndexError:
break
index = 1
while index < ls:
try:
if strs[index][pos] != current:
break
except IndexError:
break
index += 1
if index == ls:
prefix = prefix + current
else:
break
pos += 1
return prefix
# def longestCommonPrefix(self, strs):
# # https://leetcode.com/discuss/89987/one-line-solution-using-itertools-takewhile
# return reduce(lambda s1, s2: ''.join(y[0] for y in itertools.takewhile(lambda x: x[0] == x[1], zip(s1, s2))), strs or [''])
if __name__ == '__main__':
# begin
s = Solution()
print s.longestCommonPrefix(["aca","cba"])