Can someone suggest some method to count the number of prefixes of a given string which are also palindromes? It would be even helpful if I can get a boolean array of the length of string where a true denotes that a prefix up to this index is a palindrome.
Right now I have simple 2d dp approach where dp[i][j] is true is string i to j is a pallindrome, but this is O(n2). Is therre some O(n) or O(nlog(n)) method thankyou.