leetle

Daily challenge for 2025-05-15

135. Reverse Bits

Write a function solve that reverses the bits of a 32-bit unsigned integer.

Example:
Input: 43261596
Output: 964176192
Explanation: 43261596 in binary is 00000010100101000001111010011100, which is 964176192 in binary.

Run this challenge interactively in Python or JavaScript when the app loads.