Stack
Stack
return result;
}
}
class Solution {
public String decodeString(String s) {
Stack<Integer> numStack = new Stack<>();
Stack<StringBuilder> strStack = new Stack<>();
StringBuilder currentString = new StringBuilder();
int currentNum = 0;
return currentString.toString();
}
}