83 Count set bits Easy Bit Manipulation

Count the number of 1-bits in an integer.

84 Power of two Easy Bit Manipulation

Check if n is a power of two.

85 Single number (XOR) Easy Bit Manipulation

Every element appears twice except one. Find it.

86 Reverse bits Easy Bit Manipulation

Reverse the bits of a 32-bit unsigned integer.

87 Hamming distance Easy Bit Manipulation

Count positions where corresponding bits of two integers differ.

88 Bitwise AND of range Medium Bit Manipulation

Return the bitwise AND of all numbers in range [m, n].