Problem Description
Given an alphanumeric string s
, return the second largest numerical digit that appears in s
, or -1
if it does not exist. An alphanumeric string is a string consisting of lowercase English letters and digits.
Key Insights
- The problem requires identifying numerical digits within a string.
- We need to find the unique digits to determine the second largest.
- If there are fewer than two unique digits, the result should be
-1
.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string, since we need to iterate through the string once. Space Complexity: O(1), as the space used for storing digits is constant (only 10 possible digits).
Solution
To solve this problem, we can:
- Initialize a set to store unique digits found in the string.
- Iterate through each character in the string, checking if it is a digit.
- If it is a digit, add it to the set.
- Convert the set to a sorted list to find the second largest digit.
- Return the second largest digit if it exists; otherwise, return
-1
.