diff --git a/challenge2.py b/challenge2.py index 3b32942..3f2a4a8 100644 --- a/challenge2.py +++ b/challenge2.py @@ -1,10 +1,9 @@ -# WOW ok i made this initially like 80 times more complicated than I need to. def fixedXor(arg1, arg2): input1 = int(arg1, 16) input2 = int(arg2, 16) hexData = (hex(input1 ^ input2)) - return hexData[2:] # this is done to remove leading 0x. + return hexData[2:] print(fixedXor("1c0111001f010100061a024b53535009181c", "686974207468652062756c6c277320657965")) \ No newline at end of file