Problem 2735. Binary Neighbourhood

Given a natural number reorder its binary form to create another number, closest to the given one.

Examples:

  • 1 gives 2, ( 1(dec) > 1 > 01 > 10 > 2(dec) )
  • 2 gives 1, ( 2(dec) > 10 > 01 > 1(dec) )
  • 5 gives 6, ( 5(dec) > 101 > 110 > 6(dec) )

Solution Stats

47.39% Correct | 52.61% Incorrect
Last Solution submitted on Jul 16, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers86

Suggested Problems

More from this Author40

Problem Tags

Community Treasure Hunt

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

Start Hunting!