Skip to content

Commit

Permalink
Update decode.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nuoxoxo authored Nov 15, 2024
1 parent 226324f commit 4cda4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion level00/decode.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
a = ord('a')
for i in range(25):
for i in range(26):
print(i, ''.join(chr(a + (ord(c) - a + i) % 26) for c in 'cdiiddwpgswtgt'))

0 comments on commit 4cda4d9

Please sign in to comment.