Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Hamming Distance by Kacper_Kapela
"""
W tym zadaniu wystarczy obliczyc roznice symetryczna XOR tych liczb
A nastepnie dodac(policzyc bity)
idealnie do tego nadaje sie funkcja bin().count()
"""
def checkio(n, m):
return bin(n^m).count("1")
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert checkio(117, 17) == 3, "First example"
assert checkio(1, 2) == 2, "Second example"
assert checkio(16, 15) == 5, "Third example"
Dec. 17, 2015