Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 367 Bytes

File metadata and controls

7 lines (4 loc) · 367 Bytes

Write a function that reverses the bits in an integer.

For example, the number 417 is 110100001 in binary. Reversing the binary is 100001011 which is 267.

You can assume that the number is not negative.