1 Star 0 Fork 0

catyMap/AlgorithmNote

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
countSubstrings.go 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
catyMap 提交于 2021-03-30 22:11 +08:00 . 未归类算法题目提交
package main
import "fmt"
func main() {
str := "aaa"
fmt.Println(countSubstrings(str))
}
func countSubstrings(s string) int {
/*滑窗遍历*/
sum := 0
n := len(s)
if n == 0 {
return 0
}
for count := 1; count <= n; count++ {
for i := 0; i+count <= n; i++ {
if IsPalindrome(s[i : i+count]) {
sum++
}
}
}
return sum
}
func IsPalindrome(s string) bool {
n := len(s)
for i:= 0 ; i < n/2 ; i ++ {
if s[i] != s[n-i-1] {
return false
}
}
return true
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dogemap/algorithm-note.git
git@gitee.com:dogemap/algorithm-note.git
dogemap
algorithm-note
AlgorithmNote
dc486f96f6c1

搜索帮助