Reverse the bits of a 32-bit unsigned integer.
Process each of 32 bits: extract rightmost bit of n, shift into result from the left.
💡 Pro tip: Understand this problem deeply — don't just memorize the code. Try explaining the approach out loud as if teaching a friend. If you can explain it simply, you truly understand it!
reverseBits(43261596)
964176192