Longest Palindromic Substring

You are given a string (STR) of length N.

Your task is to find the longest palindromic substring. If there is more than one palindromic substring with the maximum length, return the one with the smaller start index.

Note:
A substring is a contiguous segment of a string.
For example :
The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome. There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.
Input Format:
The first line of input contains a single integer 'T', representing the number of test cases or queries to be run. 
Then the 'T' test cases follow.

The first and only one of each test case contains a string (STR).
Output Format :
For every test case, print a single line containing the longest palindromic substring. 

If there are multiple possible answers then you need to print the substring which has the lowest starting index.
Note :
You do not need to print anything; it has already been taken care of. Just implement the given function.

Follow up:

Try to solve it using O(1) space complexity.
Constraints :
1 <= T <= 10
0 <= N <= 10^3

where 'T' is the number of test cases, 'N' is the length of the given string.

Time Limit: 1 sec
CodingNinjas
author
2y

Step 1 : I first thought of the naive approach by first considering all the substrings and then check weather it is a palindrome or not and then check weather its length is maximum till now or not. Bu...read more

CodingNinjas
author
2y
Brute Force
  1. Generate substrings of the given string such that substring having greater length will be generated first.
  2. To do this, run a loop where iterator ‘LEN’ will go from N to 1, where N is the len...read more
CodingNinjas
author
2y
Dynamic Programming
  1. If the string length is less than or equal to 1 then return the string, as one length string is always palindromic.
  2. Initialize a ‘DP’ array of data type boolean, ‘DP’[i][j] will stor...read more
CodingNinjas
author
2y
Expanding around the centres
  1. If the string length is less than or equal to 1 then return the string, as a single character is always palindromic.
  2. The idea is to generate all even length and odd length p...read more
Add answer anonymously...
NCR Voyix Software Developer Intern Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter