mirror of
https://github.com/vee1e/Cryptonite-Taskphase.git
synced 2026-09-01 11:08:58 +00:00
Refactor some really bad code
This commit is contained in:
parent
9c4778dce3
commit
72bedd992e
1 changed files with 1 additions and 4 deletions
|
|
@ -140,10 +140,7 @@ import string
|
|||
|
||||
x = [350, 63, 353, 198, 114, 369, 346, 184, 202, 322, 94, 235, 114, 110, 185, 188, 225, 212, 366, 374, 261, 213] # Contents of `message.txt` converted to an array
|
||||
|
||||
keys = []
|
||||
|
||||
for i in string.ascii_uppercase + string.digits + '_':
|
||||
keys.append(i)
|
||||
keys = [i for i in string.ascii_uppercase + string.digits + '_']
|
||||
|
||||
for i in x:
|
||||
print(keys[i % 37])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue