Dorothydu's picture
Add files using upload-large-folder tool
24a2c4d verified
package main
func reverseBits(num uint32) uint32 {
pow, ans := uint32(31), uint32(0)
for num > 0 {
ans += (1 & num) << pow
pow--
num >>= 1
}
return ans
}