Skip to content

Instantly share code, notes, and snippets.

@kmdnet
Created August 24, 2016 06:47
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 kmdnet/30aff8077d16b5197019fa40483a7840 to your computer and use it in GitHub Desktop.
Save kmdnet/30aff8077d16b5197019fa40483a7840 to your computer and use it in GitHub Desktop.
work = ["01010000","01000001",
"01001110","01111011",
"01010100","01101000",
"00110011","01011111",
"00100100","01110001",
"01110101","01101001",
"01110010","01110100",
"01001100","00110011",
"01011111","00100100",
"01110001","01110101",
"01000000","01100100",
"01011111","01110111",
"01000000","01111010",
"01011111","01100010",
"01001100","01110101",
"01100110","01100110",
"01101001","01001110",
"01100111","01111101"
]
flag = ""
for x in work:
flag +=chr(int(x,2))
print flag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment