document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def hamming(a, b):
  2.     return sum(x != y for x, y in map(None, a, b))
');