Longest Palindromic Substring
Description Difficulty: 1.0-3.5/5.0 star https://oj.leetcode.com/problems/longest-palindromic-substring/ Solution This is an interesting problem. There are five solutions: Brute force ( , ), DP ( , ), LCS-DP ( , ), Center-oriented ( , ), Manacher’s Algorithm ( , ), where the first...