top of page

Looking to master object-oriented and system design for tech interviews or career growth?

  • Improve your system design and machine coding skills.

  • Study with our helpful resources.

  • Prepare for technical interviews and advance your career.

**We're in beta mode and would love to hear your feedback.

Longest Palindromic Substring InterviewBit Solution



Problem Description:

Given a string S, find the longest palindromic substring in S.


Substring of string S:

S[i...j] where 0 <= i <= j < len(S)


Palindrome string:

A string which reads the same backwards. More formally, S is a palindrome if reverse(S) = S.

In case of conflict, return the substring which occurs first ( with the least starting index ).


Example :

Input : "aaaabaaa" 
Output : "aaabaaa"


Solution


bottom of page