📋

Code Easy Stack String

Decode String

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
def decodeString(self, s):
    """
    s = "3[a]2[bc]", return "aaabcbc".
    s = "3[a2[c]]", return "accaccacc".
    s = "2[abc]3[cd]ef", return "abcabccdcdcdef".
    """

    stack = []
    coeff = 0
    current_str = ""

    for c in s:
        if c.isdigit():
            coeff = coeff * 10 + int(c)
        elif c == "[":
            stack.append((current_str, coeff))
            current_str = ""
            coeff = 0
        elif c == "]":
            prev_str, coeff = stack.pop()
            current_str = prevString + num * current_str
        else:
            current_str += c

    return current_str