Handle inverted 6 and 9

merge-requests/30/head
Bob Mottram 2024-02-02 13:29:13 +00:00
parent 45be44ecd8
commit 21ece75119
1 changed files with 4 additions and 2 deletions

View File

@ -226,7 +226,7 @@ def uninvert_text(text: str) -> str:
result = text result = text
if matches > len(text)/3: if matches > len(text)/3:
result = possible_result.replace('9', '6') result = possible_result
new_result = '' new_result = ''
extra_replace = { extra_replace = {
'[': ']', '[': ']',
@ -234,7 +234,9 @@ def uninvert_text(text: str) -> str:
'(': ')', '(': ')',
')': '(', ')': '(',
'<': '>', '<': '>',
'>': '<' '>': '<',
'9': '6',
'6': '9'
} }
for ch1 in result: for ch1 in result:
ch_result = ch1 ch_result = ch1