LeetCode 1678. 设计Goal解析器
思路
根据题目描述模拟即可
代码
class Solution {
public:
string interpret(string command) {
string ans;
int len=command.size();
for(int i=0;i<len;i++)
{
if(command[i]=='G') ans+="G";
else if(command[i]=='(' && command[i+1]==')') ans+="o", i++;
else ans+="al", i+=3;
}
return ans;
}
};