-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path5.py
23 lines (22 loc) · 809 Bytes
/
5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# https://leetcode.com/problems/longest-palindromic-substring/submissions/1562055849/
# 1-D DP
# Time: O(N^2)
# Space: O(N)
class Solution:
def longestPalindrome(self, s: str) -> str:
palindromes = set()
longest = (0, 0)
def findPalindromes(l, r):
nonlocal longest
if l < 0 or r >= len(s):
return
if l == r or (s[l] == s[r] and (l == r - 1 or (l + 1, r - 1) in palindromes)):
palindromes.add((l, r))
if r - l > longest[1] - longest[0]:
longest = (l, r)
findPalindromes(l - 1, r + 1)
return
for i in range(len(s) - 1):
findPalindromes(i, i)
findPalindromes(i, i + 1)
return s[longest[0]:longest[1]+1]