Created
December 2, 2019 11:15
-
-
Save harshitm98/5f2aa32e4b4cdf7a38a3d008283f7fb5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p = "V@]EAASB\022WZF\022e,a$7(&am2(3.\003" | |
p = list(str(p)) | |
for i in range(len(p) // 2): | |
p[i] = chr(ord(p[i]) ^ 0x32) | |
p[len(p) // 2 + 1 + i] = chr(ord(p[len(p) // 2 + 1 + i]) ^ 0x41) | |
p.reverse() | |
print("".join(p)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment