Skip to content

Instantly share code, notes, and snippets.

@KarlVogel
KarlVogel / challenge1.py
Created August 28, 2017 14:18
rhme3 challenge1
#!/usr/bin/env python
import sys
sys.path.insert(0, '../../')
from deadpool_dca import *
def processinput(iblock, blocksize):
s= '%0*x' % (2*16, iblock)
o = ""
for (op, code) in zip(s[0::2], s[1::2]):