Given a string s, return the minimum number of characters you must insert anywhere to make s a palindrome.
Input: A quoted string s.
Output: Integer — minimum insertions.
Input: "zzazz"
Output: 0
Explanation: Already a palindrome.Input: "mbadm"
Output: 2
Explanation: 'mbdadbm' or similar with 2 inserts.Input: "leetcode"
Output: 5
Explanation: Five insertions needed.1<=s.length<=500