每天Leetcode 刷题 初级算法篇-汉明距离

题目要求:

每天Leetcode 刷题 初级算法篇-汉明距离_第1张图片

力扣题解:循环和位移动

每天Leetcode 刷题 初级算法篇-汉明距离_第2张图片

代码

/**
 * @program: mydemo
 * @description: 汉明距离
 * @author: Mr.zeng
 * @create: 2021-02-26 09:50
 **/
public class Solution37 {
        public int hammingDistance(int x, int y) {
            return Integer.bitCount(x ^ y);
        }
}

你可能感兴趣的:(Leetcode,leetcode,算法,汉明距离,学习记录,知识分享)