Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 837 Bytes

476. 数字的补数.md

File metadata and controls

34 lines (31 loc) · 837 Bytes

给定一个正整数,输出它的补数。补数是对该数的二进制表示取反。

注意:

给定的整数保证在32位带符号整数的范围内。 你可以假定二进制数不包含前导零位。 示例 1:

输入: 5
输出: 2
解释: 5的二进制表示为101(没有前导零位),其补数为010。所以你需要输出2。

示例 2:

输入: 1
输出: 0
解释: 1的二进制表示为1(没有前导零位),其补数为0。所以你需要输出0。

solution:

/**
 * @param {number} num
 * @return {number}
 */
var findComplement = function(num) {
    const binaryNum = num.toString(2)
    const complementNumArr = []
    for(let item of binaryNum.split('')) {
        complementNumArr.push(item === '0' ? '1' : '0')
    }
    return parseInt(complementNumArr.join(''), 2)
};