leetcode-python-汉明距离
Posted 泊鸽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-python-汉明距离相关的知识,希望对你有一定的参考价值。
1)取异或,然后计算1的个数
class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count
以上是关于leetcode-python-汉明距离的主要内容,如果未能解决你的问题,请参考以下文章