Solution: Largest Palindromic Number
Let’s solve the Largest Palindromic Number problem using the Greedy pattern.
We'll cover the following...
Statement
You are given a string num
consisting of digits from num
. The resulting palindromic number must not have leading zeros.
Note: You may reorder the digits freely, and you must use at least one digit from the
num
string.
Constraints:
num.length
...