-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path392.cpp
51 lines (45 loc) · 1.05 KB
/
392.cpp
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
#include <gtest/gtest.h>
#include <string>
#include <vector>
using namespace std;
class Solution {
public:
bool isSubsequence(string s, string t)
{
if (s.empty()) {
return true;
}
if (t.empty()) {
if (s.empty()) {
return true;
}
return false;
}
for (auto const &c : s) {
auto pos = t.find(c);
if (pos == string::npos) {
return false;
}
t = t.substr(pos + 1);
}
return true;
}
};
class Testing : public testing::Test {
public:
Solution s;
};
TEST_F(Testing, EmptyString) { EXPECT_TRUE(s.isSubsequence("", "")); }
TEST_F(Testing, SingleCharacter) { EXPECT_TRUE(s.isSubsequence("a", "a")); }
TEST_F(Testing, SimpleSubsequence)
{
EXPECT_TRUE(s.isSubsequence("abc", "ahbgdc"));
}
TEST_F(Testing, NonSubsequence)
{
EXPECT_FALSE(s.isSubsequence("axc", "ahbgdc"));
}
TEST_F(Testing, SubsequenceWithDuplicates)
{
EXPECT_TRUE(s.isSubsequence("abc", "ahbgdc"));
}