394-Decode-String
Sat 17 May 2025
https://leetcode.com/problems/decode-string
import pyutil as pyu
pyu.get_local_pyinfo()
print(pyu.ps2("python-dotenv"))
from typing import List
class Solution:
def decodeString(self, s: str) -> str:
stack = [] # (prevStr, repeatCount)
currStr = ''
currNum = 0
for c in s:
if c.isdigit():
currNum = currNum * 10 + int(c)
else:
if c == '[':
stack.append((currStr, currNum))
currStr = ''
currNum = 0
elif c == ']':
prevStr, num = stack.pop()
currStr = prevStr + num * currStr
else:
currStr += c
return currStr
new Solution().decodeString()
Score: 5
Category: leetcode