Goal Parser Interpretation

  26 Dec 2020

By Wen Xu

algorithm

Description

You own a Goal Parser that can interpret a string command. The command consists of an alphabet of “G”, “()” and/or “(al)” in some order. The Goal Parser will interpret “G” as the string “G”, “()” as the string “o”, and “(al)” as the string “al”. The interpreted strings are then concatenated in the original order.

Given the string command, return the Goal Parser’s interpretation of command.

Example 1:

Input: command = “G()(al)” Output: “Goal” Explanation: The Goal Parser interprets the command as follows: G -> G () -> o (al) -> al The final concatenated result is “Goal”. Example 2:

Input: command = “G()()()()(al)” Output: “Gooooal” Example 3:

Input: command = “(al)G(al)()()G” Output: “alGalooG”

Constraints:

1 <= command.length <= 100 command consists of “G”, “()”, and/or “(al)” in some order.

Solution

Just iterative through the string. When we encounter G, we move by 1, when we encounter “()” we move by 2, when we encounter “(al)” we move by 4.

Below is the implementation

class Solution:
    def interpret(self, command: str) -> str:
        ret = ""
        i = 0
        while i < len(command):
            if command[i] == "G":
                ret += "G"
                i += 1
            elif command[i] == "(":
                if command[i + 1] == ')':
                    ret += "o"
                    i += 2
                else:
                    ret += "al"
                    i += 4
        return ret
comments powered by Disqus