Guest User

Untitled

a guest
Jan 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. crypted_text.each_char do |char|
  2. index = alphabet3.to_s.index(char)
  3. decrypted_text.concat(alphabet[index])
  4. end
Add Comment
Please, Sign In to add comment