Introduction
Palindrome Problem
Manacher’s Algorithm
647. Palindromic Substrings
Leetcode: https://leetcode.com/problems/palindromic-substrings/
Expand from the center
1 | def countSubstrings(self, s: str) -> int: |
5. Longest Palindromic Substring
Leetcode: https://leetcode.com/problems/longest-palindromic-substring/
Solution 1: Expanding center