Skip to content

Instantly share code, notes, and snippets.

@Camshaft54
Last active June 17, 2021 04:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Camshaft54/23d5da7381d93d17598ee6af1aaeeba5 to your computer and use it in GitHub Desktop.
Save Camshaft54/23d5da7381d93d17598ee6af1aaeeba5 to your computer and use it in GitHub Desktop.
Codingame Decoder
encoded_text = input("Paste Encoded Text: ") # the encoded text might look like: 牰湩⡴栢汥潬眠牯摬⤢
print(bytes(encoded_text, "u16")[2:].decode("ascii"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment