The time complexity for this function will be O(n*3), as the complexity to find all possible strings is O(n*2) and the one to check if it's a palindrome is O(n). This results in O(n2*n)= O(n3).

Is there a better, more efficient method to solve this problem?

Of course! There are many solutions to a problem if we'll look hard enough for them. We will share another solution with you that will use the dynamic programming technique to find the longest palindromic substring.

PYTHON
OUTPUT
Results will appear here.