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.

Writer's pictureilluminati

Minimum Appends for Palindrome! - InterviewBit Solution


Problem Description

Given a string A consisting of lowercase characters.

We need to tell minimum characters to be appended (insertion at end) to make the string A a palindrome.


Problem Constraints

1 <= |A| <= 105

A consists only of lower-case characters.



Input Format

First argument is an string A.



Output Format

Return a integer denoting the minimum characters to be appended (insertion at end) to make the string A a palindrome.



Example Input

Input 1:

A = "abede"


Input 2:

A = "aabb"



Example Output

Output 1:

2


Output 2:

2



Example Explanation

Explanation 1:

We can make string palindrome as "abedeba" by adding ba at the end of the string.


Explanation 2:

We can make string palindrome as "aabbaa" by adding aa at the end of the string.



Solution Approach:




Solution:

Code in CPP

If you have any questions or queries, feel free to drop a comment in the comments section below.

Note: Help us improve this blog

If you have a better solution, and you think you can help your peers to understand this problem better, then please drop your solution and approach in the comments section below.

We will upload your approach and solution here by giving you the proper credit so that you can showcase it among your peers.

Comments


bottom of page