Palindromic Substrings (#647)
Given a string s, return the number of palindromic substrings in it.
A string is a palindrome when it reads the same backward as forward.
A substring is a contiguous sequence of characters within the string.
Company Tags: Amazon, Facebook
Core Concept: Dynamic Programming, Expand from Center