Problem Description
You are given a string num consisting of digits only. Return the largest palindromic integer (in the form of a string) that can be formed using digits taken from num. It should not contain leading zeroes.
Key Insights
- A palindromic number reads the same forwards and backwards.
- To construct the largest palindromic number, we can use a frequency count of the digits.
- The digits used in the first half of the palindrome can mirror in the second half.
- If an odd frequency digit exists, it can be placed in the middle of the palindrome.
- Leading zeros need to be avoided unless the only digit is zero.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string. Space Complexity: O(1), since we only need a fixed-size array for digit counts.
Solution
To solve the problem, we will:
- Count the frequency of each digit from 0 to 9 using an array.
- Construct the first half of the palindrome using the available digits, starting from the largest digit to ensure the largest number.
- If there exists any digit with an odd count, we will select the largest one to place in the middle of the palindrome.
- Mirror the first half to form the second half of the palindrome.
- Handle leading zeros by ensuring the result does not start with '0', unless it is the only digit.