reverse-bits-unsigned-only

Status: IN

`reverse_bits` assumes non-negative input; Python's right-shift on negative integers sign-extends, which would produce incorrect results — but the problem guarantees unsigned 32-bit input.

Source: entries/2026/06/06/reverse-bits-solution.md

JSON