forked from SauravP97/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
5_LongestPalindromicSubstring.py
46 lines (44 loc) · 1.81 KB
/
5_LongestPalindromicSubstring.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
45
46
#Difficulty = Medium
#Submission Speed = 48.40%
'''
Before Jumping onto Solution, know that:
=>Palindromes are of two types: Odd Palindromes (length is odd) and Even Palindrome (length is even)
=>We traverse the array, and for every element, we suppose that current element is the middle element and check for the largest palindromic
substring that can be made which has middle element as the current element.
Note that, In case of even palindrome, there are two middle elements.
=> We check for both Odd and even Palindromes
=> How to check for largest palindromic substring with given middle element?
we maintain two pointers left and right.
Initialize them with current index (middle element index) and In every loop we check s[left]==s[right] (and check for
boundary errors too, left and right dont go out of the size of array or 0). In the body of the loop we decrease the left
and increase the right pointer.
'''
'''
Time Complexity = O(N^2)
Space Complexity = O(N)
'''
class Solution:
def longestPalindrome(self, s: str) -> str:
longest = ""
size = len(s)
for i in range(size):
#Odd Palindrome
left,right = i,i
ls = ""
while 0<=left<size and 0<=right<size and s[left]==s[right]:
if left==right:
ls = s[left]
else:
ls = s[left] + ls + s[right]
left-=1
right+=1
#Even Palindrome
left,right = i,i+1
rs = ""
while 0<=left<size and 0<=right<size and s[left]==s[right]:
rs = s[left] + rs + s[right]
left-=1
right+=1
temp = ls if len(ls)>len(rs) else rs
longest = temp if len(temp)>len(longest) else longest
return longest