题解 | #DNA序列#

DNA序列

https://www.nowcoder.com/practice/e8480ed7501640709354db1cc4ffd42a

package main

import (
	"fmt"
	"strings"
)

func main() {

	str := ""
	n := 0
	fmt.Scan(&str)
	fmt.Scan(&n)
	//记录G 、C 出现最多的 index
	maxIndex := 0
	//记录G 、C 出现最多的个数
	maxCount := 0
	//滑动窗口求解出maxIndex
	for i := 0; i < len(str)-n; i++ {
		tempStr := str[i : i+n]
		count := 0
		count += strings.Count(tempStr, "C")
		count += strings.Count(tempStr, "G")
		if count > maxCount {
			maxCount = count
			maxIndex = i
		}
	}
	//根据 maxIndex输出 子串即可
	fmt.Println(str[maxIndex : maxIndex+n])

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
今天 10:25
点赞 评论 收藏
分享
10-31 14:54
已编辑
门头沟学院 算法工程师
点赞 评论 收藏
分享
一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务