-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1678_interpret.cc
67 lines (61 loc) · 1.05 KB
/
Problem_1678_interpret.cc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <iostream>
#include <string>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
string interpret(string command)
{
string res;
int n = command.length();
int state = 0;
for (int i = 0; i < n; i++)
{
char c = command[i];
if (c == 'G')
{
res.push_back('G');
}
else if (c == '(')
{
state = 1;
}
else if (c == ')')
{
if (state == 1)
{
res.push_back('o');
}
else
{
res.push_back('a');
res.push_back('l');
}
state = 0;
}
else
{
state = 2;
}
}
return res;
}
};
bool isStringEqual(string a, string b)
{
return a == b;
}
void testInterpret()
{
Solution s;
EXPECT_TRUE(isStringEqual("Goal", s.interpret("G()(al)")));
EXPECT_TRUE(isStringEqual("Gooooal", s.interpret("G()()()()(al)")));
EXPECT_TRUE(isStringEqual("alGalooG", s.interpret("(al)G(al)()()G")));
EXPECT_SUMMARY;
}
int main()
{
testInterpret();
return 0;
}