码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode之461. Hamming Distance

时间:2016-12-31 23:48:47      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:turn   eal   str   tostring   blank   replace   来源   acea   target   

技术分享

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

 

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/

 

LeetCode之461. Hamming Distance

标签:turn   eal   str   tostring   blank   replace   来源   acea   target   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!