Palindromic Substrings Problem Statement
You are given a string 'STR'. Your task is to determine the total number of palindromic substrings present in 'STR'.
Example:
Input:
"abbc"
Output:
5
Explanation:
The palindromic substrings in "abbc" are: ["a", "b", "b", "c", "bb"]. Therefore, the total is 5.
Constraints:
1 <= t <= 100
0 <= N <= 1000
- Where 't' is the number of test cases, 'N' is the length of 'STR'.
- Time Limit: 1 sec.
Note:
A palindrome reads the same forwards and backwards, such as "abba".
A substring is a contiguous sequence of characters within a string, such as "a", "b", "c", "ab", "bc", "abc" of "abc".
Input format:
The first line contains an integer 't' specifying the number of test cases or queries to be run. Each test case consists of a single string 'STR' for which you must count the palindromic substrings.
Output Format:
For each test case, return the total number of palindromic substrings. Output each result on a new line.

AnswerBot
4mo
Count the total number of palindromic substrings in a given string.
Iterate through each character in the string and expand around it to find palindromic substrings.
Use dynamic programming to store the...read more
Help your peers!
Add answer anonymously...
CGI Group Associate Software Engineer interview questions & answers
An Associate Software Engineer was asked 2mo agoQ. Tell me about your college experience.
An Associate Software Engineer was asked 3mo agoQ. What are the core principles of Object-Oriented Programming (OOP) in Java?
An Associate Software Engineer was asked 6mo agoQ. Write Java code to demonstrate string manipulation.
Popular interview questions of Associate Software Engineer
An Associate Software Engineer was asked 2mo agoQ1. Tell me about your college experience.
An Associate Software Engineer was asked 3mo agoQ2. What are the core principles of Object-Oriented Programming (OOP) in Java?
An Associate Software Engineer was asked 6mo agoQ3. Write Java code to demonstrate string manipulation.
Top HR questions asked in CGI Group Associate Software Engineer
An Associate Software Engineer was asked 1mo agoQ1. What are your strengths and weaknesses?
An Associate Software Engineer was asked 5mo agoQ2. What actions would you take if your manager does not approve your product idea, ...read more
An Associate Software Engineer was asked 5mo agoQ3. Can you provide examples of real-life scenarios where you handled conflicts with...read more
>
CGI Group Associate Software Engineer 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

