-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
35 lines (29 loc) · 840 Bytes
/
main.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
class Solution {
public:
int countSubstrings(string s) {
int n = s.size();
int count = 0;
for (int i = 0; i < n; ++i) {
int l = i, r = i;
while (0 <= l && r < n && s[l] == s[r]) ++count, --l, ++r;
}
for (int i = 0; i < n - 1; ++i) {
int l = i, r = i + 1;
while (0 <= l && r < n && s[l] == s[r]) ++count, --l, ++r;
}
return count;
}
};
class Solution {
public:
int countSubstrings(string s) {
int n = s.size();
int count = 0;
auto search = [&](int l, int r) -> void {
while (0 <= l && r < n && s[l] == s[r]) ++count, --l, ++r;
};
for (int i = 0; i < n; ++i) search(i, i);
for (int i = 0; i < n - 1; ++i) search(i, i + 1);
return count;
}
};