Skip to content

Commit f4fd147

Browse files
authored
Make decrypt_caesar_with_chi_squared work with upper case letters (TheAlgorithms#5379)
* Fixes: TheAlgorithms#5323 * Fixes: TheAlgorithms#5323
1 parent 9ac94c0 commit f4fd147

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

ciphers/decrypt_caesar_with_chi_squared.py

+15-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def decrypt_caesar_with_chi_squared(
66
ciphertext: str,
77
cipher_alphabet: list[str] | None = None,
88
frequencies_dict: dict[str, float] | None = None,
9-
case_sensetive: bool = False,
9+
case_sensitive: bool = False,
1010
) -> tuple[int, float, str]:
1111
"""
1212
Basic Usage
@@ -20,7 +20,7 @@ def decrypt_caesar_with_chi_squared(
2020
* frequencies_dict (dict): a dictionary of word frequencies where keys are
2121
the letters and values are a percentage representation of the frequency as
2222
a decimal/float
23-
* case_sensetive (bool): a boolean value: True if the case matters during
23+
* case_sensitive (bool): a boolean value: True if the case matters during
2424
decryption, False if it doesn't
2525
2626
Returns:
@@ -117,6 +117,9 @@ def decrypt_caesar_with_chi_squared(
117117
>>> decrypt_caesar_with_chi_squared('crybd cdbsxq')
118118
(10, 233.35343938980898, 'short string')
119119
120+
>>> decrypt_caesar_with_chi_squared('Crybd Cdbsxq', case_sensitive=True)
121+
(10, 233.35343938980898, 'Short String')
122+
120123
>>> decrypt_caesar_with_chi_squared(12)
121124
Traceback (most recent call last):
122125
AttributeError: 'int' object has no attribute 'lower'
@@ -158,7 +161,7 @@ def decrypt_caesar_with_chi_squared(
158161
# Custom frequencies dictionary
159162
frequencies = frequencies_dict
160163

161-
if not case_sensetive:
164+
if not case_sensitive:
162165
ciphertext = ciphertext.lower()
163166

164167
# Chi squared statistic values
@@ -172,10 +175,14 @@ def decrypt_caesar_with_chi_squared(
172175
for letter in ciphertext:
173176
try:
174177
# Try to index the letter in the alphabet
175-
new_key = (alphabet_letters.index(letter) - shift) % len(
178+
new_key = (alphabet_letters.index(letter.lower()) - shift) % len(
176179
alphabet_letters
177180
)
178-
decrypted_with_shift += alphabet_letters[new_key]
181+
decrypted_with_shift += (
182+
alphabet_letters[new_key].upper()
183+
if case_sensitive and letter.isupper()
184+
else alphabet_letters[new_key]
185+
)
179186
except ValueError:
180187
# Append the character if it isn't in the alphabet
181188
decrypted_with_shift += letter
@@ -184,10 +191,11 @@ def decrypt_caesar_with_chi_squared(
184191

185192
# Loop through each letter in the decoded message with the shift
186193
for letter in decrypted_with_shift:
187-
if case_sensetive:
194+
if case_sensitive:
195+
letter = letter.lower()
188196
if letter in frequencies:
189197
# Get the amount of times the letter occurs in the message
190-
occurrences = decrypted_with_shift.count(letter)
198+
occurrences = decrypted_with_shift.lower().count(letter)
191199

192200
# Get the excepcted amount of times the letter should appear based
193201
# on letter frequencies

0 commit comments

Comments
 (0)