标签:ret over table 表示 border padding lis list res
public class Solution {
public int hammingDistance(int x, int y) {
return Integer.bitCount(x ^ y);
}
}
bitCount api :
static int |
bitCount(int i)
Returns the number of one-bits in the two‘s complement binary representation of the specified
int value. |
返回指定int值的二进制补码二进制表示中的一位数。
标签:ret over table 表示 border padding lis list res
原文地址:http://www.cnblogs.com/yinfj/p/6798896.html