-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathBreak_a_Palindrome.py
34 lines (25 loc) · 1.5 KB
/
Break_a_Palindrome.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
Leat code problem of day (date 10/10/2022)
Given a palindromic string of lowercase English letters palindrome, replace exactly one character with any lowercase English letter so that the resulting string is not a palindrome and that it is the lexicographically smallest one possible.
Return the resulting string. If there is no way to replace a character to make it not a palindrome, return an empty string.
A string a is lexicographically smaller than a string b (of the same length) if in the first position where a and b differ, a has a character strictly smaller than the corresponding character in b. For example, "abcc" is lexicographically smaller than "abcd" because the first position they differ is at the fourth character, and 'c' is smaller than 'd'.
Input: palindrome = "abccba"
Output: "aaccba"
Explanation: There are many ways to make "abccba" not a palindrome, such as "zbccba", "aaccba", and "abacba".
Of all the ways, "aaccba" is the lexicographically smallest.
"""
# Problem solution :
class Solution:
def breakPalindrome(self, palindrome: str) -> str:
if len(palindrome)==1:
return ""
cmp=palindrome
for i in range(len(palindrome)):
if palindrome[i] !="a":
palindrome=palindrome.replace(palindrome[i],"a",1)
if palindrome!=palindrome[::-1]:
return palindrome
else:
palindrome=cmp
palindrome=palindrome[:-1]
return palindrome+"b"