Ad
  • Custom User Avatar
    1. Filter out non-hexadecimal characters (just leaving hexadecimal) = "redlionfish"   ----> ["e", "d", "f"]
    2. Convert each hexadecimal character to denary/decimal (base 10)   = ["e", "d", "f"] ----> [14, 13, 15]
    3. XOR together each integer. Do this by XORing the first two
       integers then the result of this is the product of the next XOR  =  [14, 13]    --->  14^13  ---> 3
                                                                           [3, 15]     --->  3^15   ---> 12