You are given a string num, representing a large integer. Return the largest-valued odd integer (as a string) that is a non-empty substring of num, or an empty string “” if no odd integer exists.
A substring is a contiguous sequence of characters within a string.
Example 1:
1 | Input: num = "52" |
Example 2:
1 | Input: num = "4206" |
Example 3:
1 | Input: num = "35427" |
1 | class Solution: |