suayptalha commited on
Commit
043a1be
·
verified ·
1 Parent(s): b524a09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
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 second_text
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!