Created
October 17, 2019 23:38
-
-
Save xingfanxia/ce1e207c572227f00280d73ad1d5fc94 to your computer and use it in GitHub Desktop.
Hack this site
This file contains hidden or 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
| def decrypt(s): | |
| return "".join([chr(ord(s[i])-i) for i in range(len(s))]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment