Min Op For Palindrome, is a Strings related problem and in this post we will see how we can solve this challenge in C++

Minimum Characters required to make a String PalindromicBookmark Suggest Edit Problem Setter: glowing_glare Problem Tester: RAMBO_tejasv You are given a string. The only operation allowed is to insert characters in the beginning of the string. How many minimum characters are needed to be inserted to make the string a palindrome string

Example: Input: ABC Output: 2 Input: AACECAAAA Output: 2

Please check the main.cpp snippet for the solution.

This solution originally posted at: Github by @susantabiswas