Rotate for Max Number

Published by Mubashir Hassan in

Create a function which takes a number and returns the maximum value by rearranging its digits.

Examples

rotateMaxNumber(123) ➞ 321

rotateMaxNumber("001") ➞ 100

rotateMaxNumber(999) ➞ 999

Notes

The input number can be a digit or a string.

Watch a quick demo on how Edabit works.