Skip to content

Instantly share code, notes, and snippets.

@dudepare
Created April 20, 2016 06:39
Show Gist options
  • Select an option

  • Save dudepare/7350d2d5740763fc0d77ee720d03d8fb to your computer and use it in GitHub Desktop.

Select an option

Save dudepare/7350d2d5740763fc0d77ee720d03d8fb to your computer and use it in GitHub Desktop.

Revisions

  1. dudepare created this gist Apr 20, 2016.
    7 changes: 7 additions & 0 deletions hired.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    def main(msg):
    convert = map(chr, msg)
    print("".join(list(convert)))

    if __name__ == '__main__':
    msg = [76, 101, 116, 116, 104, 101, 98, 101, 115, 116, 115, 116, 97, 114, 116,117, 112, 115, 97, 112, 112, 108, 121, 116, 111, 121, 111, 117, 0]
    main(msg)