1-line solution in Clear category for The Hamming Distance by kazuki.h
def checkio(n, m): return bin(n^m).count("1")
Nov. 28, 2021
Comments: