Problem Description
You are given an integer array nums. You have to find the maximum sum of a pair of numbers from nums such that the largest digit in both numbers is equal. Return the maximum sum or -1 if no such pair exists.
Key Insights
- Each number can be analyzed to determine its largest digit.
- We can group numbers based on their largest digit.
- The maximum pair sum can be calculated for each group with the same largest digit.
- If no pairs exist for any digit, return -1.
Space and Time Complexity
Time Complexity: O(n) - where n is the number of elements in the array. We traverse the list to find the largest digits and their associated numbers. Space Complexity: O(1) - we only use a fixed number of variables and a hash map to store sums, which does not depend on the input size.
Solution
To solve the problem, we will use a hash map (or dictionary) to group numbers by their largest digit. For each number, we will calculate its largest digit and store the numbers in the hash map. After populating the map, we will compute the maximum sum for each digit's group by checking the two largest numbers. If no valid pairs exist, we return -1.