Given a string find any combination of concatenated palindromic substrings. or Given a string cut it into pieces such that all pieces are palindrome and concatenating them gives whole string. No rearrangement is possible. if answer is possible provide where you made cuts.
Eg. 1001101101 if we split as (1001)(101101)
1001 split as (1001)
1100 Answer is no