Given a string, num, that represents a non-negative integer and an integer k, remove exactly k digits from num so that the remaining digits form the smallest possible number.
Constraints:
k num.length
num consists of only digits.
num does not have any leading zeros except for the zero itself.
Given a string, num, that represents a non-negative integer and an integer k, remove exactly k digits from num so that the remaining digits form the smallest possible number.
Constraints:
k num.length
num consists of only digits.
num does not have any leading zeros except for the zero itself.