Decode String
Try to solve the Decode String problem.
We'll cover the following
Statement
Given an encoded string, return its decoded version. The encoding rule follows the pattern:
Note: The
is guaranteed to be a positive integer.
Assume that the input string is always valid, meaning there are no extra spaces, and the square brackets are properly balanced and well-formed. Additionally, assume that the original data contains no digits and that digits are only used for repeating the string.
For example, the input will not contain patterns like
Constraints:
s.length
s
 consists of lowercase English letters, digits, and square brackets.
Example
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.