Files
30-seconds-of-code/snippets/python/s/hamming-distance.md
2023-05-07 16:07:29 +03:00

549 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Hamming distance snippet python
math
tulips-and-reeds 2021-02-18T14:22:25+02:00

Calculates the Hamming distance between two values.

  • Use the XOR operator (^) to find the bit difference between the two numbers.
  • Use bin() to convert the result to a binary string.
  • Convert the string to a list and use count() of str class to count and return the number of 1s in it.
def hamming_distance(a, b):
  return bin(a ^ b).count('1')
hamming_distance(2, 3) # 1