Skip to content

Commit c54b87c

Browse files
w
1 parent f40d37c commit c54b87c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pol_with_x.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Given a string with "?", return a palindrome if possible. EX: ?ab?b returns babab
22

3-
string = "?ab??b"
3+
strings_to_test = ["?ab??b", "a?b?a", "???", "a?c?b", "a??a", "a?b?c", "??a??", "a??b", "a?b?b?a", "a?b?c?d"]
44

55
def checkpol(string) -> str:
66
answer_list = [i for i in string]
@@ -11,10 +11,14 @@ def checkpol(string) -> str:
1111
l, r = 0, len(answer_list) - 1
1212

1313
while l < r:
14-
if answer_list[l] == "?":
14+
if answer_list[l] == "?" and answer_list[r] == "?":
15+
answer_list[l] = "a"
16+
answer_list[r] = "a"
17+
elif answer_list[l] == "?":
1518
answer_list[l] = answer_list[r]
1619
elif answer_list[r] == "?":
1720
answer_list[r] = answer_list[l]
21+
1822
l += 1
1923
r -= 1
2024

@@ -25,4 +29,5 @@ def checkpol(string) -> str:
2529

2630
return answer_string
2731

28-
print(checkpol(string))
32+
for i in strings_to_test:
33+
print(checkpol(i))

0 commit comments

Comments
 (0)