classSolution{publicStringremoveKdigits(String num,int k){Stack<Character> stack =newStack();// Go through the stringfor(char c : num.toCharArray()){// When current number is smaller than the top of the stack// We want a monotonic stackwhile(k >0&&!stack.isEmpty()&& c < stack.peek()){// Remove the number--k;
stack.pop();}
stack.push(c);}// In case it is monotonic alreadywhile(k >0&&!stack.isEmpty()){--k;
stack.pop();}StringBuilder res =newStringBuilder();// Assemble the resultwhile(!stack.isEmpty()){
res.insert(0, stack.pop());}// Remove leading zeroswhile(res.length()>0&& res.charAt(0)=='0'){
res.deleteCharAt(0);}// Handle edge case where result might be emptyreturn res.length()>0? res.toString():"0";}}