longest-palindromic

How to use

step 1 Setup.

npm install

step 2 Test.

npm run test

step 3 Compile scripts and run

npm start

Requirements

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.

  • Example 1: Input: "babad" Output: "bab" Note: "aba" is also a valid answer.

  • Example 2: Input: "cbbd" Output: "bb"