LeetCode之461. Hamming Distance

------------------------------------------------------------------

AC代码:

public class Solution {
    public int hammingDistance(int x, int y) {
        return Integer.toString(x^y,2).replaceAll("0","").length();
    }
}

题目来源: https://leetcode.com/problems/hamming-distance/

原文地址:https://www.cnblogs.com/cc11001100/p/6240408.html