Goal Parser Interpretation - String - Easy - LeetCode
💻 coding

Goal Parser Interpretation - String - Easy - LeetCode

1 min read 181 words
1 min read
ShareWhatsAppPost on X
  • 1The Goal Parser interprets 'G' as 'G', '()' as 'o', and '(al)' as 'al'.
  • 2The final interpreted string is formed by concatenating the results in the original order.
  • 3The provided solution has a time complexity of O(n) and a space complexity of O(n).

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The Goal Parser interprets 'G' as 'G', '()' as 'o', and '(al)' as 'al'."

Goal Parser Interpretation - String - Easy - LeetCode

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.

public class Solution {
 public string Interpret(string command) {
 var sb = new StringBuilder();
 for(int i=0;i<command.Length;){
 if(command[i]=='G'){
 sb.Append("G");
 i++;
 }
 else if(command[i]=='(' && command[i+1]==')'){
 sb.Append("o");
 i+=2;
 }
 else if(command[i]=='(' && command[i+1]=='a' && command[i+2]=='l' && command[i+3]==')'){
 sb.Append("al");
 i+=4;
 }
 }
 
 return sb.ToString();
 }
}

t

Time Complexity: O(n)

Space Complexity: O(n)

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 7 December 2020 · 1 min read · 181 words

Part of AskGif Blog · coding

You might also like