Skip to content

Instantly share code, notes, and snippets.

@xingfanxia
Created October 17, 2019 23:38
Show Gist options
  • Save xingfanxia/ce1e207c572227f00280d73ad1d5fc94 to your computer and use it in GitHub Desktop.
Save xingfanxia/ce1e207c572227f00280d73ad1d5fc94 to your computer and use it in GitHub Desktop.
Hack this site
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