Longest Palindromic Substring Problem Statement
You are provided with a string STR
of length N. The task is to find the longest palindromic substring within STR
. If there are several palindromic substrings of the maximum length, return the one that starts with the smallest index.
Input:
The first line of the input contains a single integer T, the number of test cases.
Each of the following T lines contains a single string STR
.
Output:
For each test case, output the longest palindromic substring. If multiple substrings qualify, return the one that appears first.
Example:
Input:
2
ababc
cbbd
Output:
aba
bb
Explanation:
For first test case, "aba"
and "bab"
are both palindromes. "aba"
is chosen because it starts earlier.
Constraints:
1 ≤ T ≤ 5
0 ≤ N ≤ 100
Note:
A substring is defined as a contiguous segment of a string.

AnswerBot
4mo
Find the longest palindromic substring in a given string.
Iterate through the string and expand around each character to find palindromes
Keep track of the longest palindrome found so far
Return the long...read more
Help your peers!
Add answer anonymously...
Optum Global Solutions Software Developer interview questions & answers
A Software Developer was asked 7mo agoQ. What is the difference between relational and non-relational DBMS?
A Software Developer was asked 10mo agoQ. Write code to implement debouncing.
A Software Developer was asked 10mo agoQ. What are closures in JavaScript?
Popular interview questions of Software Developer
A Software Developer was asked 7mo agoQ1. What is the difference between relational and non-relational DBMS?
A Software Developer was asked 10mo agoQ2. Write code to implement debouncing.
A Software Developer was asked 12mo agoQ3. Given an unsorted array of integers nums, return the length of the longest conse...read more
>
Optum Global Solutions Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

