We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defpalindromeIndex(s):# Write your code hereforiinrange(len(s)):reverse_s=len(s)-i-1ifs[i]!=s[reverse_s]:x=s[:i]+s[i+1:]y=x[::-1]ifx!=y:returnreverse_selse:returnireturn-1
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Palindrome Index
You are viewing a single comment's thread. Return to all comments →
My python solution: