Problem of the day
For a given string “BaaB”
3 possible palindrome partitioning of the given string are:
{“B”, “a”, “a”, “B”}
{“B”, “aa”, “B”}
{“BaaB”}
Every substring of all the above partitions of “BaaB” is a palindrome.
The only line of input contains a string 'S'.
For each test case, print all the possible palindromic partitions of the given string in a separate line.
Each substring of a partition is written within quotes(““) and separated by comma(,) and space, and each partition of the given string is written inside square brackets[].
The output of each test case will be printed in a separate line.
All the substrings of a partition are sorted in lexicographical order in the output. You just need to return the partitions in any order.
You do not need to print or sort anything, it has already been taken care of. Just implement the function.
0 <= |S|<= 15
where |S| denotes the length of string 'S'.
Time Limit: 1 sec.
aaC
["C", "a", "a"]
["C", "aa"]
For the given string "aaC" there are two partitions in which all substring of partition is a palindrome.
BaaB
["B", "B", "a", "a"]
["B", "B", "aa"]
["BaaB"]
For the given string "BaaB", there are 3 partitions that can be made in which every substring is palindromic substrings.