Minimum Insertion Steps to Make a String Palindrome

A word, phrase, or sequence that reads the same backwards as forwards is a palindrome. For example the sequence "Step on no pets" is a palindrome. Today, let's focus on converting a sequence into a palindrome by inserting characters at arbitrary positions in the original input sequence. Minimum Insertion Steps to Make a String Palindrome - Problem Statement Given an input sequence s, in one step you can insert any character at any position of the input sequence. Return the minimum number of steps to make s palindrome. For example, given the input sequence "leetcode", inserting five characters the string becomes "leetcodocteel". This is the minimum number of insertions required to make the input sequence a palindrome. Minimum Insertion Steps to Make a String Palindrome - Definition Let s be an input sequence, i and j denote the start and end positions of a subsequence. Let p[i][j] be the minimum number of insertions required to make subseque...