2016年7月17日星期日

[LintCode] #181 Flip Bits


class Solution {
    /**
     *@param a, b: Two integer
     *return: An integer
     */
    public static int bitSwapRequired(int a, int b) {
        // write your code here
        return Integer.bitCount(a ^ b);
    }
};

没有评论:

发表评论