Skip to content

added submission for desmondw #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

added submission for desmondw #17

wants to merge 1 commit into from

Conversation

skleung
Copy link
Contributor

@skleung skleung commented Oct 13, 2015

No description provided.

plaintext = plaintext.upper()
caesar_encr = {'A':'D', 'B':'E', 'C':'F', 'D':'G', 'E':'H', 'F':'I', 'G':'J', 'H':'K', 'I':'L', 'J':'M',
'K':'N', 'L':'O', 'M':'P', 'N':'Q', 'O':'R', 'P':'S', 'Q':'T', 'R':'U', 'S':'V', 'T':'W', 'U':'X', 'V':'Y', 'W':'Z',
'X':'A', 'Y':'B', 'Z':'C'}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's perhaps a more pythonic way using dict and zip instead of hardcoding

import string 
uppercase_letters = string.ascii_uppercase
caesar_encr = dict(zip(uppercase_letters, uppercase_letters[3:] + uppercase_letters[:3]))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant