回文子串 647
备考心情
发布于2024年9月5日 17:26
阅读数 921
class Solution {
public:
int countSubstrings(string s) {
int n = s.size(), ans = 0;
for(int i = 0; i < 2*n-1; i++){
int l = i/2, r = i/2+i%2;
while(l>=0&&r<n && s[l]==s[r]){
l--; r++; ans++;
}
}
return ans;
}
};
登录后发布评论
暂无评论,来抢沙发