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

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.

Solution Stats

61.0% Correct | 39.0% Incorrect
Last Solution submitted on Mar 09, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers1654

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!