Create a function which takes a number (as a string) and returns the maximum value by rearranging its digits.
rotateMaxNumber("123") ➞ 321 rotateMaxNumber("001") ➞ 100 rotateMaxNumber("999") ➞ 999
N/A