Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions atbash-cipher/atbash_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def encode(plain_text: str) -> str:
Encode text using the Atbash cipher.

Letters are mirrored in the lowercase Latin alphabet; digits are preserved.
Punctuation characters '.,!?;:-' and spaces are removed. The result is grouped
into 5-character blocks separated by spaces for readability.
Punctuation characters '.,!?;:-' and spaces are removed. The result is
grouped into 5-character blocks separated by spaces for readability.

:param plain_text: Input text to encode.
:type plain_text: str
Expand Down