Skip to content

Latest commit

 

History

History
124 lines (78 loc) · 1.68 KB

README_EN.md

File metadata and controls

124 lines (78 loc) · 1.68 KB

中文文档

Description

Write a function to determine the number of bits you would need to flip to convert integer A to integer B.

Example1:

 Input: A = 29 (0b11101), B = 15 (0b01111)



 Output: 2



Example2:

 Input: A = 1,B = 2



 Output: 2



Note:

  1. -2147483648 <= A, B <= 2147483647

Solutions

Python3

class Solution:
    def convertInteger(self, A: int, B: int) -> int:
        A &= 0xFFFFFFFF
        B &= 0xFFFFFFFF
        return (A ^ B).bit_count()

Java

class Solution {
    public int convertInteger(int A, int B) {
        return Integer.bitCount(A ^ B);
    }
}

C++

class Solution {
public:
    int convertInteger(int A, int B) {
        unsigned int c = A ^ B;
        return __builtin_popcount(c);
    }
};

Go

func convertInteger(A int, B int) int {
	return bits.OnesCount32(uint32(A ^ B))
}

TypeScript

function convertInteger(A: number, B: number): number {
    let res = 0;
    while (A !== 0 || B !== 0) {
        if ((A & 1) !== (B & 1)) {
            res++;
        }
        A >>>= 1;
        B >>>= 1;
    }
    return res;
}

Rust

impl Solution {
    pub fn convert_integer(a: i32, b: i32) -> i32 {
        (a ^ b).count_ones() as i32
    }
}

...