-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1678-Goal-parser-interpretation.cs
More file actions
40 lines (36 loc) · 1.02 KB
/
1678-Goal-parser-interpretation.cs
File metadata and controls
40 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Text;
namespace Solution._1678.Goal_parser_interpretation
{
public class _1678_Goal_parser_interpretation
{
public string Interpret(string command)
{
var res = new char[command.Length];
int index = 0;
for (int i = 0; i < command.Length;)
{
if (command[i] == 'G')
{
res[index++] = 'G';
i++;
}
else if (command[i] == '(' && command[i + 1] == ')')
{
res[index++] = 'o';
i += 2;
}
else
{
res[index++] = 'a';
res[index++] = 'l';
i += 4;
}
}
return new string(res, 0, index);
//command = command.Replace("(al)", "al");
//command = command.Replace("()", "o");
}
}
}