Split a string in equal parts such that all parts are palindromes
Given a string str, the task is to split the string into minimum parts such that each part is of same length and each part is a palindrome. Print the required number of parts. Examples: Input: str = "civicbob" Output: 8 "b", "b", "c", "c", "i", "i", "v" and "o" are the required partitions. "civic" a