You are given a string num that represents a very large number.
Your task is to find the largest possible odd number that appears as a continuous substring of this string.
A substring means characters taken without skipping, directly next to each other.
If there is no odd digit anywhere in the string, return an empty string "".
Input: num = "7314"
Output: "731"
Explanation:
The odd substrings are "7", "73", "731", "3", etc. The largest odd number substring is 731.
Input: num = "8888"
Output: ""
Explanation:
All digits are even, so no odd substring exists.
Input: num = "12057"
Output: "12057"
Explanation:
The number already ends with an odd digit → entire string is odd.
Accepted:
Submission: