leetcode 461. Hamming Distance
Question
The Hamming distance between two integers is the number of positions at which the corresponding bits are different.
Given two integers x
and y
, calculate the Hamming distance.
Example
|
|
Tip
位运算问题,对输入的两个数字做按位异或^
操作,然后再利用位运算符>>
计算结果中有多少个数字1出现
Code
|
|