Easy
Reverse the bit order of a 32-bit unsigned integer.
Return the integer formed by reversing the order of bits in a 32-bit input.
Examples
Input: n = 43261596
Output: 964176192
Constraints
- Process all 32 bits
Coding Challenge
Reverse the bit order of a 32-bit unsigned integer.
Return the integer formed by reversing the order of bits in a 32-bit input.
Input: n = 43261596
Output: 964176192
Preparing your coding workspace...