This commit is contained in:
2022-11-30 18:20:36 +08:00
parent b13cfa00bb
commit 72555b19e0
132 changed files with 332 additions and 334 deletions

View File

@@ -5,13 +5,13 @@
TEST(Problem38, Case1) {
int i{1};
string o{"1"};
Solution solution;
S0038 solution;
EXPECT_EQ(solution.countAndSay(i), o);
}
TEST(Problem38, Case2) {
int i{4};
string o{"1211"};
Solution solution;
S0038 solution;
EXPECT_EQ(solution.countAndSay(i), o);
}