Given a non-negative integer represented as a string num, and an integer k, remove k digits from the number so that the new number is the smallest possible. The length of num is less than 10^5 and k <= len(num).
- A string
num. - An integer
k.
- A string representing the smallest possible number.
Input: num = "1432219", k = 3
Output: "1219"
Explanation: Remove 4, 3, and 2 to get the smallest number "1219".