Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
TheAlgorithms-Python/project_euler/problem_059/sol1.py at master · ErwinJunge/TheAlgorithms-Python · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
ErwinJunge
/
TheAlgorithms-Python
Public
forked from
TheAlgorithms/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
TheAlgorithms-Python
/
project_euler
/
problem_059
/
sol1.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
127 lines (105 loc) · 4.78 KB
master
Breadcrumbs
TheAlgorithms-Python
/
project_euler
/
problem_059
/
sol1.py
Copy path
Top
File metadata and controls
Code
Blame
127 lines (105 loc) · 4.78 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
"""
Each character on a computer is assigned a unique code and the preferred standard is
ASCII (American Standard Code for Information Interchange).
For example, uppercase A = 65, asterisk (*) = 42, and lowercase k = 107.
A modern encryption method is to take a text file, convert the bytes to ASCII, then
XOR each byte with a given value, taken from a secret key. The advantage with the
XOR function is that using the same encryption key on the cipher text, restores
the plain text; for example, 65 XOR 42 = 107, then 107 XOR 42 = 65.
For unbreakable encryption, the key is the same length as the plain text message, and
the key is made up of random bytes. The user would keep the encrypted message and the
encryption key in different locations, and without both "halves", it is impossible to
decrypt the message.
Unfortunately, this method is impractical for most users, so the modified method is
to use a password as a key. If the password is shorter than the message, which is
likely, the key is repeated cyclically throughout the message. The balance for this
method is using a sufficiently long password key for security, but short enough to
be memorable.
Your task has been made easy, as the encryption key consists of three lower case
characters. Using p059_cipher.txt (right click and 'Save Link/Target As...'), a
file containing the encrypted ASCII codes, and the knowledge that the plain text
must contain common English words, decrypt the message and find the sum of the ASCII
values in the original text.
"""
from
__future__
import
annotations
import
string
from
itertools
import
cycle
,
product
from
pathlib
import
Path
VALID_CHARS
:
str
=
(
string
.
ascii_letters
+
string
.
digits
+
string
.
punctuation
+
string
.
whitespace
)
LOWERCASE_INTS
:
list
[
int
]
=
[
ord
(
letter
)
for
letter
in
string
.
ascii_lowercase
]
VALID_INTS
:
set
[
int
]
=
{
ord
(
char
)
for
char
in
VALID_CHARS
}
COMMON_WORDS
:
list
[
str
]
=
[
"the"
,
"be"
,
"to"
,
"of"
,
"and"
,
"in"
,
"that"
,
"have"
]
def
try_key
(
ciphertext
:
list
[
int
],
key
:
tuple
[
int
, ...])
->
str
|
None
:
"""
Given an encrypted message and a possible 3-character key, decrypt the message.
If the decrypted message contains a invalid character, i.e. not an ASCII letter,
a digit, punctuation or whitespace, then we know the key is incorrect, so return
None.
>>> try_key([0, 17, 20, 4, 27], (104, 116, 120))
'hello'
>>> try_key([68, 10, 300, 4, 27], (104, 116, 120)) is None
True
"""
decoded
:
str
=
""
keychar
:
int
cipherchar
:
int
decodedchar
:
int
for
keychar
,
cipherchar
in
zip
(
cycle
(
key
),
ciphertext
):
decodedchar
=
cipherchar
^
keychar
if
decodedchar
not
in
VALID_INTS
:
return
None
decoded
+=
chr
(
decodedchar
)
return
decoded
def
filter_valid_chars
(
ciphertext
:
list
[
int
])
->
list
[
str
]:
"""
Given an encrypted message, test all 3-character strings to try and find the
key. Return a list of the possible decrypted messages.
>>> from itertools import cycle
>>> text = "The enemy's gate is down"
>>> key = "end"
>>> encoded = [ord(k) ^ ord(c) for k,c in zip(cycle(key), text)]
>>> text in filter_valid_chars(encoded)
True
"""
possibles
:
list
[
str
]
=
[]
for
key
in
product
(
LOWERCASE_INTS
,
repeat
=
3
):
encoded
=
try_key
(
ciphertext
,
key
)
if
encoded
is
not
None
:
possibles
.
append
(
encoded
)
return
possibles
def
filter_common_word
(
possibles
:
list
[
str
],
common_word
:
str
)
->
list
[
str
]:
"""
Given a list of possible decoded messages, narrow down the possibilities
for checking for the presence of a specified common word. Only decoded messages
containing common_word will be returned.
>>> filter_common_word(['asfla adf', 'I am here', ' !?! #a'], 'am')
['I am here']
>>> filter_common_word(['athla amf', 'I am here', ' !?! #a'], 'am')
['athla amf', 'I am here']
"""
return
[
possible
for
possible
in
possibles
if
common_word
in
possible
.
lower
()]
def
solution
(
filename
:
str
=
"p059_cipher.txt"
)
->
int
:
"""
Test the ciphertext against all possible 3-character keys, then narrow down the
possibilities by filtering using common words until there's only one possible
decoded message.
>>> solution("test_cipher.txt")
3000
"""
ciphertext
:
list
[
int
]
possibles
:
list
[
str
]
common_word
:
str
decoded_text
:
str
data
:
str
=
Path
(
__file__
).
parent
.
joinpath
(
filename
).
read_text
(
encoding
=
"utf-8"
)
ciphertext
=
[
int
(
number
)
for
number
in
data
.
strip
().
split
(
","
)]
possibles
=
filter_valid_chars
(
ciphertext
)
for
common_word
in
COMMON_WORDS
:
possibles
=
filter_common_word
(
possibles
,
common_word
)
if
len
(
possibles
)
==
1
:
break
decoded_text
=
possibles
[
0
]
return
sum
(
ord
(
char
)
for
char
in
decoded_text
)
if
__name__
==
"__main__"
:
print
(
f"
{
solution
()
=
}
"
)
You can’t perform that action at this time.