Update README.md
Browse files
README.md
CHANGED
@@ -207,8 +207,9 @@ def crack_sub(cipher_text):
|
|
207 |
decoded = decode(cipher_text, output)
|
208 |
second_pass = model_pass(correction_model, decoded, len(decoded))
|
209 |
second_text = correct_text(cipher_text, second_pass)
|
|
|
210 |
|
211 |
-
return
|
212 |
|
213 |
"""
|
214 |
Use crack_sub() function to solve monoalphabetic substitution ciphers!
|
|
|
207 |
decoded = decode(cipher_text, output)
|
208 |
second_pass = model_pass(correction_model, decoded, len(decoded))
|
209 |
second_text = correct_text(cipher_text, second_pass)
|
210 |
+
third_pass = model_pass(correction_model, second_text, len(decoded))
|
211 |
|
212 |
+
return third_pass
|
213 |
|
214 |
"""
|
215 |
Use crack_sub() function to solve monoalphabetic substitution ciphers!
|