[LeetCode] 402. Remove K Digits - 문제풀이
Description 주어진 정수에서 k자리수 만큼 제거했을때 가능한 가장 작은 값을 반환하는 문제입니다. Given string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k digits from num. Example 1: Input: num = "1432219", k = 3 Output: "1219" Explanation: Remove the three digits 4, 3, and 2 to form the new number 1219 which is the smallest. Example 2: Input: num = "10200", k ..