The Hamming Distance between two strings is how many bits of difference exist between those two strings. This can be discovered by doing an XOR of the strings and summing the number of 1s in the result.
The Hamming Distance between two strings is how many bits of difference exist between those two strings. This can be discovered by doing an XOR of the strings and summing the number of 1s in the result.