Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Reverse Bits (Easy 190)

Reverse bits of a given 32 bits unsigned integer.

Solution:

Click here Iterate over digit 32 times with mod 2, add digits to result. O(1) time. O(1) space.



Installation

Run make to run python and Swift files.