Problem Description
You are given an integer num
. Rearrange the digits of num
such that its value is minimized and it does not contain any leading zeros. Return the rearranged number with minimal value. Note that the sign of the number does not change after rearranging the digits.
Key Insights
- The digits of the number can be rearranged to form various combinations.
- If the number is positive, the smallest arrangement must not start with a zero.
- If the number is negative, the largest arrangement (in terms of value) must be formed.
- Sorting the digits is a natural approach to find the smallest or largest arrangement.
- Handling leading zeros is critical for positive numbers.
Space and Time Complexity
Time Complexity: O(n log n), where n is the number of digits in the input number due to sorting. Space Complexity: O(n), for storing the digits of the number.
Solution
To solve the problem, we will:
- Convert the integer to a string to extract its digits.
- Separate the digits into positive and negative cases.
- For positive numbers, sort the digits in ascending order, ensuring that the first digit is not zero (if possible).
- For negative numbers, sort the digits in descending order to maximize the value.
- Finally, construct the rearranged number and return it.