Problem 108. Given an unsigned integer x, find the largest y by rearranging the bits in x

Created by Amitava Biswas

Given an unsigned integer x, find the largest y by rearranging the bits in x.

Example:

 Input  x = 10
 Output y is 12

since 10 in binary is 1010 and 12 in binary is 1100.

Tags

Problem Group

216 solvers submitted 383 solutions (1.77 solutions/solver).

Solution Comments