We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
simple_keyword_cypher.py
1 parent 7b7b3dd commit 2d39850Copy full SHA for 2d39850
ciphers/simple_keyword_cypher.py
@@ -21,7 +21,7 @@ def create_cipher_map(key: str) -> dict[str, str]:
21
:param key: keyword to use
22
:return: dictionary cipher map
23
"""
24
- # Create alphabet list
+ # Create a list of the letters in the alphabet
25
alphabet = [chr(i + 65) for i in range(26)]
26
# Remove duplicate characters from key
27
key = remove_duplicates(key.upper())
0 commit comments